Latex: stretchable curly braces outside math

前端 未结 6 514
一个人的身影
一个人的身影 2021-02-05 11:38

I am producing some latex beamer slides (but I think it is not a beamer specific question per se).

I have the following:

\\begin{itemize}
\\item Issue1
\         


        
6条回答
  •  梦如初夏
    2021-02-05 11:43

    You could (ab)use a table instead:

    \documentclass{article}
    \usepackage{multirow}
    
    \begin{document}
    
    \begin{tabular}{ll}
    
    \textbullet Issue 1 & \multirow{2}{*}{{\LARGE \}} One and Two are cool} \\
    \textbullet Issue 2                                                     \\
    \textbullet Issue 3                                                     \\
    
    \end{tabular}
    
    \end{document}
    

    produces:

    removed dead Imageshack link

提交回复
热议问题