Guide to Cutting Long Equations in Latex for Optimal Formatting

  • Context: LaTeX 
  • Thread starter Thread starter ladil123
  • Start date Start date
  • Tags Tags
    Cut Latex
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
8 replies · 17K views
ladil123
Messages
42
Reaction score
0
Hello!

I got a very long equation that I´m writing in Latex, it is so long that the equation reference can´t fit on the same line.

How do I write to cut the equation so it continues on the next line?

Thanks
 
Physics news on Phys.org
http://www.ams.org/tex/amslatex.html" for more information.
 
Last edited by a moderator:
Like lars, I prefer to use the split environment. Using it, it looks something like this
Code:
\begin{equation}
\label{whateverequation}
\begin{split}
x &= start of long equation \\
& second half of long equation
\end{split}
\end{equation}

The two backslashes indicate the end of the line, and the ampersands on each line are aligned underneath each other.
 
Thanks for the help!

I got a follow up question..

If I have "\left(" command on the first line of the equation and the closing "\right)" command on the second line it won't work!

Any tips on how to make it work?
 
ladil123 said:
If I have "\left(" command on the first line of the equation and the closing "\right)" command on the second line it won't work!

Could you be more precise in what won't work?

If you have a one line equation that you break at some point, why do you use \left( instead of just (?

I only use the \left( when I have multi line math environment, like a matrix.

Cheers
 
Ok,
My equation has one breaking point. At the first line i got the "\left[" command
and then that line is cut off with \\
Then on the second line I got "\right]".

Then when I should quick build my pdf file I get an error message:
"Missing \right inserted"

below is my input

\begin{align}

w_{h}^{''}(x) & =2 \lambda^{2} \left[ cosh \lambda x (E cos \\
\lambda x - D sin \lambda x ) + sinh \lambda x (B cos \lambda x - A sin \lambda x )\right] \label{winkler_homo8910} \\

\end{align}


I hope I made it more clear ?
 
There was JUST a post that addressed this. Basically each individual line in latex needs both a left and a right. In order to resolve this with multi-line equations, you use the dummy \left. and \right. constructs. Basically these act as ghost braces to end the current one.
Example:
Code:
\begin{equation}
\label
\begin{split}
x =& \left[ the start of the equation \right. \\
\left. &second half of the equation \right]
\end{split}
\end{equation}