LaTeX: Automatic two-column wrapping of content

Posted by plash on Stack Overflow See other posts from Stack Overflow or by plash
Published on 2010-03-30T22:16:19Z Indexed on 2010/03/30 22:43 UTC
Read the original article Hit count: 296

Filed under:

Say I have a list of words that need to retain their order, and need to be sorted into two columns.

I can do this rather well with a tabular:

\begin{tabular}{l l}
abc & def \\
ghi & jkl \\
\end{tabular}

But doing so makes it rather difficult and time consuming to reorder the list.

Is it possible to have an automatically wrapped two-column list? Ideally, I would like to simply enter an ordered list:

\begin{magic}
abc \\
def \\
ghi \\
jkl \\
\end{magic}

And have it wrapped to two columns (as the tabular enables):

abc  def
ghi  jkl

© Stack Overflow or respective owner

Related posts about latex