How can I emulate e.g. a manually set OpenOffice tabulator in my enumeration?
- right side has to begin at a uniform point
- some space has to be between the rightmost point of left side and leftmost point of right side
- multi-line items have to stay vertically aligned (by first line) between the columns
itemizeleft indentation and vertical spacing- (bonus) shall work across
sectiontags
Working for single-line items:
\begin{minipage}{0.28\textwidth}
\begin{itemize}
\item Item 1 left side
\item Item 2 left side
\end{itemize}
\end{minipage}
\hfill
\begin{minipage}{0.7\textwidth}
\begin{itemize}
\item Item 1 right side
\item Item 2 right side
\end{itemize}
\end{minipage}
This breaks down really quickly with multi-line items. The vertical alignment will be more and more off as the number of in-item linebreaks grows.
Also, requires a lot of bad code: same-line text is spread across two blocks, itemize structure has to be duplicated, etc.
Not so working attempt inspired by [1]:
\begin{tabular}{ll}
Item 1 left side & Item 1 right side \\
Item 2 left side & Item 2 right side \\
\end{tabular}
Vertical spacing is (obviously) normal line spacing instead of proper itemize spacing here. Bullet points, if desired, have to be improvised as shown in [1].
Not so working attempt inspired by [2][3]:
\begin{tabulary}{\textwidth}{PP}
\begin{itemize}
\item[] Item 1 left side & Item 1 right side \\
\item[] Item 2 left side & Item 2 right side \\
\end{itemize}
\end{tabulary}
Throws a bunch of Package array Errors and Something's wrong errors.
Related stuff that probably will not work:
- [4] - Same issues as my first example (if admittedly with less code overall).
Also, I am fairly sure that I did not tag this question correctly. Please suggest more fitting tags.




listliketabpackage claims to do something like that: a tabular that looks like a list environment. – Dan Aug 30 '16 at 18:53multicolsover theitemizelist? – d-cmst Aug 30 '16 at 18:55longtableor related packages -- or thetaskspackage – Aug 30 '16 at 19:41multicolsdoes not guarantee that items are always on the same height in both (or say all columns), so the look may be disrupted. If this is no issue, thenmulticolsis a possible way, yes! – Aug 30 '16 at 19:42