LaTeX Guide to Cutting Long Equations in Latex for Optimal Formatting

  • Thread starter Thread starter ladil123
  • Start date Start date
  • Tags Tags
    Cut Latex
Click For Summary
SUMMARY

The discussion focuses on formatting long equations in LaTeX, specifically using the split environment for better readability. Users are advised to avoid the deprecated eqnarray environment due to poor spacing. A common issue arises when using \left and \right commands across multiple lines, which can lead to errors. The solution involves using dummy constructs \left. and \right. to maintain proper alignment and avoid compilation errors.

PREREQUISITES
  • Familiarity with LaTeX syntax and environments
  • Understanding of the split and align environments
  • Knowledge of the \left and \right commands in LaTeX
  • Basic troubleshooting skills for LaTeX compilation errors
NEXT STEPS
  • Research the split environment in LaTeX for multi-line equations
  • Learn about the align environment for aligning equations
  • Explore the use of dummy braces with \left. and \right. in LaTeX
  • Investigate best practices for formatting complex equations in LaTeX
USEFUL FOR

Mathematicians, researchers, and students who frequently write complex equations in LaTeX and need to ensure proper formatting and readability.

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
Use http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/teTeX/latex/latex2e-html/ltx-223.html .
 
Last edited by a moderator:
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.
 
The use of eqnarray is no longer suggested, since the spacing leaves much to be desired. as las3rjock noted, there are much better options available.

One more note: this link is a little dated, but the advice found there is good.

http://www.math.uiuc.edu/~hildebr/tex/displays.html
 
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}
 

Similar threads

  • · Replies 12 ·
Replies
12
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 12 ·
Replies
12
Views
3K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 4 ·
Replies
4
Views
13K
  • · Replies 12 ·
Replies
12
Views
2K
Replies
3
Views
7K
  • · Replies 5 ·
Replies
5
Views
4K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 11 ·
Replies
11
Views
5K