Breaking a list into multiple columns in Latex

后端 未结 5 925
遇见更好的自我
遇见更好的自我 2021-01-29 18:55

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 form

5条回答
  •  野的像风
    2021-01-29 19:26

    I don't know if it would work, but maybe you could break the page into columns using the multicol package.

    \usepackage{multicol}
    
    \begin{document}
    \begin{multicols}{2}[Your list here]
    \end{multicols}
    

提交回复
热议问题