Breaking a list into multiple columns in Latex

latex

Hopefully this is simple: I have a relatively long list where each list item contains very little text. For example:

* a
* b
* c
* d
* e
* f

I wish to format it like so:

* a     * d
* b     * e
* c     * f

I would rather not create a table with 2 lists as I want to be able to easily change the list without worrying about updating all the columns.

What is the best way to do this in latex?

Best Answer

Using the multicol package and embedding your list in a multicols environment does what you want:

\documentclass{article}
\usepackage{multicol}

\begin{document}
\begin{multicols}{2}
\begin{enumerate}
    \item a
    \item b
    \item c
    \item d
    \item e
    \item f
\end{enumerate}
\end{multicols}
\end{document}