Let's say I have a list of words that should keep their order and should be sorted by two columns.
I can do this pretty well with a table:
\begin{tabular}{l l}
abc & def \\
ghi & jkl \\
\end{tabular}
But to do this is quite difficult and takes a long time to reorder the list.
Is it possible to have an automatically packed list of two columns? Ideally, I would just like to enter an ordered list:
\begin{magic}
abc \\
def \\
ghi \\
jkl \\
\end{magic}
And bind it to two columns (as the table menu is allowed):
abc def
ghi jkl
source
share