I have a problem with colortbl and amsmath. Is someone here aware of a conflict between these two packages?
\documentclass[10pt]{article}
\usepackage{amsmath}
%\usepackage{colortbl}
\begin{document}
\begin{tabular}[b]{cc}
Correct & Incorrect\\
\parbox[b][]{0.4\linewidth}{
\begin{align*}
3(2x-5)^2&=3(4x^2-20x+25)\\
&=12x^2-60x+75
\end{align*}
} &
\parbox[b][]{0.5\linewidth}{
\begin{align*}
3(2x-5)^2&=(6x-15)^2\\
&=36x^2-180x+225
\end{align*}
}\\
\end{tabular}
\end{document}
This compiles fine but when I uncomment \usepackage{colortbl} it throws errors.
Here is the error log.
! Misplaced \omit.
\math@cr@@@ ...@ \@ne \add@amps \maxfields@ \omit
\kern -\alignsep@ \iftag@ ...
l.14 }
&
I expect to see \omit only after tab marks or the \cr of
an alignment. Proceed, and I'll ignore this case.
! Misplaced \omit.
\math@cr@@@ ...@ \@ne \add@amps \maxfields@ \omit
\kern -\alignsep@ \iftag@ ...
l.14 }
&
I expect to see \omit only after tab marks or the \cr of
an alignment. Proceed, and I'll ignore this case.
I have to mention that the problem seems to crop up only when I use align inside the parbox in the table.

alignedinstead ofalign. – Peter Grill Dec 09 '12 at 08:54align. – hpesoj626 Dec 09 '12 at 08:56