I have 3 elements of the following form (approx ~20 equations for each one) :
\begin{equation}
\begin{aligned}
% LOTS OF EQUATIONS %
\end{aligned}
\end{equation}
How to put display these 3 elements in 3 columns on one page ?
I tried :
\begin{tabular}{ccc}
\begin{equation}
\begin{aligned}
% LOTS OF EQUATIONS %
\end{aligned}
\end{equation}
&
\begin{equation}
\begin{aligned}
% LOTS OF EQUATIONS %
\end{aligned}
\end{equation}
&
\begin{equation}
\begin{aligned}
% LOTS OF EQUATIONS %
\end{aligned}
\end{equation}
\end{tabular}
But it does not work and return the following error :
You can't use '\eqno' in restricted horizontal mode
How to do what I want to do?

alignedatsee hereother solutions could involve
\usepackage{multicol},\vfilland\columnbreaksee [here][2]and a third variant could use
minipageand you should also have a look at [here][3] [2]: http://tex.stackexchange.com/questions/8683/how-do-i-force-a-column-break-in-a-multi-column-page [3]: http://tex.stackexchange.com/questions/35460/design-a-multiple-columns-environment-to-arrange-exercises – epsilonhalbe Jul 23 '12 at 22:39