4

Possible Duplicate:
How do I force TeX to completely use the 1st column?

I am using a three-columns template to create cheat sheets:

\begin{multicols}{3}
...
\end{multicols}

When there is not much text, the result is divided equally between the three columns:

enter image description here

I would prefer having the entire text on the left column, exploiting the entire page height, e.g.:

enter image description here

How do exploit the full page height for the first column with multicols?

1 Answers1

12

See package documentation of multicol: "2.2 Not balancing the columns":

\begin{multicols*}{3}
...
\end{multicols*}
Heiko Oberdiek
  • 271,626