Math & Science ⇒ Tall brace in multi line math expression.
Tall brace in multi line math expression.
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
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Tall brace in multi line math expression.
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.
Tall brace in multi line math expression.
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}