Is there a good/correct way of making an align environment with one line spanning multiple columns?
At the moment I'm using a hack like the following, but I feel that it's probably not the best way.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
L1C1 &= 1234 \,,& L1C2 &= abcd \,,\\
L2C1 &= 1234 \,,& L2C2 &= efgh \,,\\
L3 &= 1234567890abcdefghijklmnop \ . \hspace{-30cm}
\end{align}
\end{document}

L3 &= 1234567890\rlap{$abcdefghijklmnop \ .$}. most lines of math contain reasonable places where one can break without damage. – barbara beeton Apr 15 '11 at 12:17