is there any way of excluding a single line in the align environment from being aligned with the others? This question might sound strange, but let me explain...
It should look like:
Code: Select all
a1=b1 c1=d1 e1=f1
a2=b2 c2=d2 e2=f2
a2=a+b+c+d+e+f+g+h=b2
a3=b3 c3=d3 e3=f3
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\begin{document}
\begin{align*}
a1&=b1 &c1&=d1 &e1&=f1\\
a2&=b2 &c2&=d2 &e2&=f2\\
a2&=a+b+c+d+e+f+g+h=b2 &&&&\\
a3&=b3 &c3&=d3 &e3&=f3
\end{align*}
\end{document}
Code: Select all
a1=b1 c1=d1 e1=f1
a2=b2 c2=d2 e2=f2
a2=a+b+c+d+e+f+g+h=b2
a3=b3 c3=d3 e3=f3
Any ideas?