[Tex/LaTex] Writing in the first column first when using multicol package

multicol

I'm using the multicol package to enable writing with 3 columns or more, however I realise that the default behaviour is to balance out the content of the page with the columns.

But this is not what I want, since what I want is to fill out the first column first, then the second, and so on.

Does anyone know how to enable this in multicol package? Or does anyone know any other packages that can enable this?

Best Answer

Shouldn't be a problem, just use the multicols* environment.

\documentclass{article}
\usepackage{multicol}
\usepackage{lipsum}

\begin{document}
\begin{multicols*}{3}
\lipsum[1-4]
\end{multicols*}
\end{document}
Related Question