Graphics, Figures & Tables ⇒ Itemize inside an Array
-
greenpatriot
- Posts: 10
- Joined: Tue Aug 10, 2010 10:27 pm
Itemize inside an Array
I am working on my dissertation defense slides and I wanted to have a slide that looks approx like this:
Line
Line
item }
item } Description
item }
Where the three braces to the right of the items will be one large brace.
My thought was to try and do this using an array with a \mbox around the itemize commands, but it didn't like that.
Is there a way to use itemize inside an array??
Many thanks,
-N
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: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Itemize inside an Array
Code: Select all
\documentclass{beamer}
\usepackage{amsmath}
\begin{document}
\begin{frame}
\[
\left.
\begin{minipage}{2cm}
\begin{itemize}
\item One
\item Two
\item Three
\end{itemize}
\end{minipage}
\right\} \text{Description}
\]
\end{frame}
\end{document}-
greenpatriot
- Posts: 10
- Joined: Tue Aug 10, 2010 10:27 pm