Greetings,
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
Graphics, Figures & Tables ⇒ Itemize inside an Array
-
- Posts: 10
- Joined: Tue Aug 10, 2010 10:27 pm
Itemize inside an Array
Last edited by greenpatriot on Wed Aug 03, 2011 9:59 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10323
- Joined: Mon Mar 10, 2008 9:44 pm
Itemize inside an Array
There's no need for an array. Here's a solution with itemize inside a minipage:
Stefan
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}
LaTeX.org admin
-
- Posts: 10
- Joined: Tue Aug 10, 2010 10:27 pm
Re: Itemize inside an Array
Fannnnnnnnntastic. Thank you!!