Math & Science ⇒ How can I break the line without closing a \left \right pair
How can I break the line without closing a \left \right pair
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.
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
Hi,
you could close it in a hidden way, by
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
you could close it in a hidden way, by
Code: Select all
\right.
Stefan
LaTeX.org admin
How can I break the line without closing a \left \right pair
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*}
- 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
This works, for example:
Stefan
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*}
LaTeX.org admin
Re: New line without closing bracket
Thanks, that works!