Today I failed using an align-environment inside of a tabular-environment.
Consider the following example:
\documentclass[12pt]{scrbook}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\begin{document}
\begin{tabular}{ll}
A & B \\%
& %
\begin{align}
A &= B \\
C &= D
\end{align}%
\\%
\end{tabular}%
\end{document}
When I try this I'll get an error claiming: "Argument of \align has an extra }." and "Paragraph ended before \align was complete." and much more.
When I enclose everything in paraphrases (like {\begin{align}.....\end{align}}) I'll get some other errors: "Missing \endgroup inserted." and multiple "Missing } inserted."
How can I use the align-environment properly inside of a table?


alignedenvironment here. – Qrrbrbirlbel Jun 27 '13 at 16:32