Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

latex

People also ask

How do I display text in two columns?

On the Layout tab, click Columns, then click the layout you want. To apply columns to only part of your document, with your cursor, select the text that you want to format. On the Layout tab, click Columns, then click More Columns. Click Selected text from the Apply to box.


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.


Use two minipages.

\begin{minipage}[position]{width}
  text
 \end{minipage}