Text Formatting ⇒ Brace to cover multi-line Text
Brace to cover multi-line Text
I am a new LaTeX user. At the moment I am writing a lab report and I am facing a problem that I could not find an answer to, even after searching for about an hour.
I want to create a brace as in the following illustration but I can not find a way to do it. I hope to get some help and I am sorry If I have posted in the wrong forum and have violated any rules.
Thanks
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Brace to cover multi-line Text
there are different ways. Here's one, with tabular and auto-sizing braces with \left and \right:
Code: Select all
\documentclass{article}
\begin{document}
$\left.
\begin{tabular}{lll}
Text line one \\
Text line two \\
Text line three \\
\end{tabular}
\right\} = $ Text
\end{document}
Re: Brace to cover multi-line Text
Thank you both for the fast replies. I would like the normal typeset over italics in the Math mode. And Stefan has already given the answer which will achieve what I am trying to do.
{I am from Sri Lanka and most of the people at the bachelors level haven't even heard about Latex. I am switching from MS Word to Latex for report writing.)
And thanks again for the welcome!.

- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Brace to cover multi-line Text
Stefan