tags:

views:

361

answers:

2

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 with tabular environment but it does not work as I want.

My question is how to create a two column area in a LeTeX document (or something similar) and be able to put certain content to left and right column? I do not want to create a two-column layout for whole document, only for part of it.

Thank you for you effort in advance :-)

+4  A: 

Use two minipages.

lhf
while multicol will work, and works well, if you want specific control of *what* is in the columns, then the minipage idea would probably work best.
Mica
+8  A: 

Load the multicol package. Then use

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

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

Rob Hyndman