7

I want a curly left-bracket with three lines and the behind the bracket two lines, see pictures. I only got one line behind which is continued under the bracket when the paper is ended. How do I do that? (Don't notice about the different size of the text.)

enter image description here

Davislor
  • 44,045
Anna O
  • 130

4 Answers4

9

enter image description here

This was done inside an equation with two tabulars

\documentclass{article}

\begin{document}
\[
  \left.
    \begin{tabular}{c}
      text 1 \\
      text 2 \\
      text 3
    \end{tabular}
  \right\}
  \quad
  \begin{tabular}{c}
    More text \\
    more text
  \end{tabular}
\]
\end{document}
Werner
  • 603,163
Ignasi
  • 136,588
6

an alternative with use of the rcases from the mathtools package:

\documentclass{article}
\usepackage{mathtools}

\begin{document}
\[
    \begin{rcases}
      \text{text} 1 \\
      \text{text} 2 \\
      \text{text} 3
    \end{rcases}
  \quad
  \begin{tabular}{l}
     More text \\
     more text
  \end{tabular}
\]
\end{document}

enter image description here

Zarko
  • 296,517
6
\documentclass{article}
\usepackage[usestackEOL]{stackengine}
\begin{document}
\[
\left.
\Centerstack[l]{Text Part 1\\ Text 2\\Text 3}
\right\}
\qquad
\Centerstack[l]{More text\\and more text}
\]
\end{document}

enter image description here

3

Another very simple solution, with blkarray:

\documentclass{article}
\usepackage{amsmath}
\usepackage{blkarray,,multirow, bigstrut}

\begin{document}

\[
    \begin{blockarray}{c\}\BAmultirow{1.5cm}}
    \bigstrut[t] \text{text} 1 & More text\\
      \text{text} 2 & more text\\
      \text{text} 3\bigstrut[b]
    \end{blockarray}
\]

\end{document} 

enter image description here

Bernard
  • 271,350