To create a multiple column layout in LaTeX is easy. What you need is the multicol package.
\usepackage{multicol}
For example, to create a two column layout.
\begin{multicols}{2}
put the contents here
\end{multicols}
To manually break the column, use the \columnbreak command.
\begin{multicols}{2}
Column 1
\columnbreak
Column 2
\end{multicols}
If you are using standard LaTeX class, such as “article”, you can simple create a two column layout using the code below:
\documentclass[twocolumn]{article}
Creates the exact copy of your hard disk and allows you to instantly restore the entire machine.
New Acronis True Image Home 2010 is the most reliable and easy in use backup solution. Now with online backup option!
15% Discount Code: FMAATIH2010
New Acronis True Image Home 2010 is the most reliable and easy in use backup solution. Now with online backup option!
15% Discount Code: FMAATIH2010








Great post.. Thank you for sharing..
There’s an typo in your examples:
it should read:
\end{multicols}
with a ‘t’ no ‘mulicols.’
Cheers.
@Julian Villegas: Thanks.