Math & Science ⇒ Breaking lines in the align environment.
Breaking lines in the align environment.
Is there any way around this? How can I perform a line break inside brackets (or parentheses, or curly braces, etc.)?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Breaking lines in the align environment.
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Breaking lines in the align environment.
It's not that big of a deal because the output is what it should be, but is there any way to eliminate these errors as well?
Thanks much!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Breaking lines in the align environment.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Breaking lines in the align environment.
Code: Select all
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{align*}
\nabla ^2v & =2\left[ \left( \left( \frac{\partial ^2u}{\partial x^2}\right) ^2+\frac{\partial u}{\partial x}\frac{\partial ^3u}{\partial x^3}+\left( \frac{\partial ^2u}{\partial x\partial y}\right) ^2+\frac{\partial u}{\partial y}\frac{\partial ^3u}{\partial x^2y}\right) \right \\
& +\left \left( \left( \frac{\partial ^2u}{\partial y^2}\right) ^2+\frac{\partial u}{\partial y}\frac{\partial ^3u}{\partial y^3}+\left( \frac{\partial ^2u}{\partial x\partial y}\right) ^2+\frac{\partial u}{\partial x}\frac{\partial ^3u}{\partial xy^2}\right) \right]
\end{align*}
\end{document}
Missing delimiter (. inserted ).
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Breaking lines in the align environment.
Code: Select all
\left. \ldots \right)
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Breaking lines in the align environment.
Thanks a lot!