Math & ScienceHow can I break the line without closing a \left \right pair

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
marcdein
Posts: 40
Joined: Sat Dec 19, 2009 2:11 pm

How can I break the line without closing a \left \right pair

Post by marcdein »

I have a long equation, in "align" mode which I need to split into two parts. Unfortunately, at the beginning of the RHS, I have an open square bracket: \left[. Is there a way to go over to the next line without having to close it first? Thanks.
Last edited by marcdein on Thu Feb 02, 2012 5:10 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

How can I break the line without closing a \left \right pair

Post by Stefan Kottwitz »

Hi,

you could close it in a hidden way, by

Code: Select all

\right.
However, if you need the same bracket size on the next line, you need to be careful. Either use \vphantom{highest expression}, or use \big, \Big etc. instead of \left and \right with a fixed, but equal size.

Stefan
LaTeX.org admin
marcdein
Posts: 40
Joined: Sat Dec 19, 2009 2:11 pm

How can I break the line without closing a \left \right pair

Post by marcdein »

For some reason it doesn't work. I probably didn't understand it correctly. Here is an example of what I am trying to use:

Code: Select all

\begin{align*}
A &\le \frac{e^{-rT} }{2}(K-1) \big[a + b + c + d\right\\
 \left+ e + f + g\big].
\end{align*}
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

How can I break the line without closing a \left \right pair

Post by Stefan Kottwitz »

This works, for example:

Code: Select all

\begin{align*}
A &\le \frac{e^{-rT} }{2}(K-1) \big[a + b + c + d\\
 &\quad + e + f + g\big]
\end{align*}
Stefan
LaTeX.org admin
marcdein
Posts: 40
Joined: Sat Dec 19, 2009 2:11 pm

Re: New line without closing bracket

Post by marcdein »

Thanks, that works!
Post Reply