I need a small help from this forum.
I have a math expression spanning many lines (a continued fraction) :
\begin{equation}
1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+ \dots
}}}}}
\end{equation}
I would like to add a tall curly brace } spanning the entire expression
to the right of the expression. Can I do it with \right\} ? Where do I
put this command ? Any other way to do this ?
In fact, I want a tall } and = xyz on the right side of the above
expression (see https://drpartha.org.in/drpartha/tall-brace-right.png
Math & Science ⇒ Tall brace in multi line math expression.
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Tall brace in multi line math expression.
Something like
should do it. The "aligned" environment is to eliminate the extra vertical space above the fraction.
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\left.
\begin{aligned}
1 + \cfrac{1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+ \dotsb
}}}}}
\end{aligned}
\right\} = xyz
\end{equation}
\end{document}
Tall brace in multi line math expression.
It worked ! Many thanks to kaiserkarl13 and this forum. See result at : https://drpartha.org.in/drpartha/tall-brace-right.png
Tall brace in multi line math expression.
Another way to achieve the same result is to use the '\left.' and '\right\}' commands together.
Code: Select all
\begin{equation}
1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+
\cfrac {1}{1+ \dots
\left.
\right\}
}}}}}
\end{equation}