Math & ScienceTrouble with split Equation and scaled Delimiters

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
21did21
Posts: 58
Joined: Thu Sep 08, 2011 12:27 pm

Trouble with split Equation and scaled Delimiters

Post by 21did21 »

Hello world :)


i have try to split one equation but it don't works with me :oops:

i have tried this :

\begin{equation}

Code: Select all

\begin{split} 
AAAAA=AAAAA+AAAA
\left( \\
&BBBB\left(EEEE+EEEEEEE\right)
+\left(HHH.RRRR.DDD.SSS\right)
+\left(RRRR.EEEE.ZZZZ.CCCC\right)
\right)
\end{split} 
\label{eq18}
\end{equation}
i don't understand why i don't work

ps: when we split equation how we can manage the alignement ? on the left or center
Last edited by 21did21 on Sun Feb 19, 2012 6:01 pm, edited 2 times in total.

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10359
Joined: Mon Mar 10, 2008 9:44 pm

Trouble with split Equation and scaled Delimiters

Post by Stefan Kottwitz »

Hi,

this doesn't work because \left and the corresponding \right have to be on the same line: you cannot use \left( on one line, and the \right) on another. On the same line it would work well, as in the example for the inner parentheses. However, for big delimiters across lines, use \big, \Big, \bigg, \Bigg or related commands instead.

Stefan
LaTeX.org admin
User avatar
Stefan Kottwitz
Site Admin
Posts: 10359
Joined: Mon Mar 10, 2008 9:44 pm

Trouble with split Equation and scaled Delimiters

Post by Stefan Kottwitz »

21did21 wrote:ps: when we split equation how we can manage the alignement ? on the left or center
It's explained in the amsmath user's guide.

Stefan
LaTeX.org admin
21did21
Posts: 58
Joined: Thu Sep 08, 2011 12:27 pm

Re: Trouble with split Equation and scaled Delimiters

Post by 21did21 »

thank you stef :D
Post Reply