t*h 发帖数: 148 | 1 I used
\begin{eqnarray}
eq1 = xxx \\
eq2 = yyy \\
\end{eqnarray}
It is right-justified by default. But I want to have it left-justified.
So I tried
\begin{eqnarray}
&&eq1 = xxx\\
&&eq2 = yyy\\
\end{eqnarray}
Some spaces appear before the equations. I do not want to use '&=&' because
eq1 and eq2 have significantly different length. Do you have any idea how to
make it?
Thanks. |
N**D 发帖数: 10322 | 2 use
\begin{align}
\end{align}
【在 t*h 的大作中提到】 : I used : \begin{eqnarray} : eq1 = xxx \\ : eq2 = yyy \\ : \end{eqnarray} : It is right-justified by default. But I want to have it left-justified. : So I tried : \begin{eqnarray} : &&eq1 = xxx\\ : &&eq2 = yyy\\
|
t*h 发帖数: 148 | 3 Thanks. It's much better now. |
T*******n 发帖数: 493 | 4 eqnarray has bugs in its calculation of the amount of spaces to add.
Don't use it.
【在 t*h 的大作中提到】 : I used : \begin{eqnarray} : eq1 = xxx \\ : eq2 = yyy \\ : \end{eqnarray} : It is right-justified by default. But I want to have it left-justified. : So I tried : \begin{eqnarray} : &&eq1 = xxx\\ : &&eq2 = yyy\\
|