General ⇒ \left( \right)
\left( \right)
\begin{eqnarray}
y&=& \left( \frac{1}{x} (a+b) \nonumber \\
&+& (c+d) \right)
\end{eqnarray}
when I put ( ) instead of \left( \right) then it works, but I want the size of the brackets to adjust.
best
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
\left( \right)
Code: Select all
\documentclass[11pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
y&= \left( \frac{1}{x} (a+b) \right. \nonumber \\
&+ \left. (c+d) \right)
\end{align}
\end{document}
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
\left( \right)
* the use of \left and \right leads, in this case, to matching delimiters of different sizes, which is not correct;
* the continuation line should be indented in order to appear at the right of the opening delimiter.
So I would propose any of the following solutions (there's still more):
Code: Select all
\documentclass[11pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
y= \Bigl( &\frac{1}{x} (a+b) \Bigr. \notag \\
&+ \Bigl. (c+d) \Bigr)
\end{align}
\begin{equation}
\begin{split}
y= \Bigl( &\frac{1}{x} (a+b) \Bigr. \\
&+ \Bigl. (c+d) \Bigr)
\end{split}
\end{equation}