Packages   fancyhdr   geometry   multicol   pageslts   titlesec   titletoc

The multicol Package

Documentation multicol
Categories layout
Description

You can set up a portion of a document to be set in two or more columns. There are two different forms of the \begin{multicols}{n} command. Without a star, LaTeX will attempt to balance the column length on the final page that is set in multiple columns. With the star, it will not attempt this balance.

Options
\usepackage{multicol}
Examples
This part is set before we start using multicols. The text spans the width of the page.
\small
\begin{multicols}{2}
\lipsum[1]
\end{multicols}

And now with the star:

\begin{multicols*}{2}
\lipsum[2]
\end{multicols*}