How to display a content in two-column layout in LaTeX?

后端 未结 2 861
说谎
说谎 2021-01-29 22:12

I am writing an article in LaTeX and I would like to display some content in two column layout. In the left column a matrix and in the right column a list of items. I have tried

相关标签:
2条回答
  • 2021-01-29 22:15

    Use two minipages.

    \begin{minipage}[position]{width}
      text
     \end{minipage}
    
    0 讨论(0)
  • 2021-01-29 22:23

    Load the multicol package, like this \usepackage{multicol}. Then use:

    \begin{multicols}{2}
    Column 1
    \columnbreak
    Column 2
    \end{multicols}
    

    If you omit the \columnbreak, the columns will balance automatically.

    0 讨论(0)
提交回复
热议问题