1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
\documentclass{article}
\begin{document}
\paragraph{Normal Usage}
\begin{eqnarray*}
a&=&b+c\\
d&=&e+f+g\\
\end{eqnarray*}
\paragraph{gather alternative (single column misuse)}
\begin{eqnarray*}
a=b+c&&\\
d=e+f+g&&\\
\end{eqnarray*}
\begin{eqnarray*}
&a=b+c&\\
&d=e+f+g&\\
\end{eqnarray*}
\begin{eqnarray*}
&&a=b+c\\
&&d=e+f+g\\
\end{eqnarray*}
\paragraph{Awkward continuations}
\begin{eqnarray*}
a=b+c&&\\
=e+f+g&&\\
\end{eqnarray*}
\begin{eqnarray*}
&a=b+c&\\
&=e+f+g&\\
\end{eqnarray*}
\begin{eqnarray*}
&&a=b+c\\
&&=e+f+g\\
\end{eqnarray*}
\end{document}
|