Aligning Equations in LaTeX: Troubleshooting

  • Context: LaTeX 
  • Thread starter Thread starter computer2012
  • Start date Start date
  • Tags Tags
    Latex Troubleshooting
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
computer2012
Messages
2
Reaction score
0
Hi,

I want to align several equations in latex.

I want the first and second equations to be in the middle.

The last equation is too long and I want to split it into 2 parts.

I tried

\begin{gather}
Eq1\\
Eq2\\
\begin{multline}
Eq3a\\
Eq3b
\end{multline}
\end{gather}

However, the code cannot be compiled due to multline cannot be used inside other environment. How can I solve the problem?

Thanks for your help very much.
 
Physics news on Phys.org
Have you tried eqnarray?

Code:
\begin{eqnarray}
a & = & b + c \\
c & = & d + e \\
f & = & a + b + \nonumber \\
  &    &  d + e + f
\end{eqnarray}

[itex] \begin{eqnarray}<br /> a & = & b + c \\<br /> c & = & d + e \\<br /> f & = & a + b + \nonumber \\<br /> & & d + e + f<br /> \end{eqnarray}[/itex]
 
I want the effect of multline, that is, Eq 3a is on the extreme left hand side and Eq 3b is on the extreme right hand side? How can I do that? Thanks.