Graphics, Figures & TablesItemize inside an Array

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
greenpatriot
Posts: 10
Joined: Tue Aug 10, 2010 10:27 pm

Itemize inside an Array

Post by greenpatriot »

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
Last edited by greenpatriot on Wed Aug 03, 2011 9:59 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10397
Joined: Mon Mar 10, 2008 9:44 pm

Itemize inside an Array

Post by Stefan Kottwitz »

There's no need for an array. Here's a solution with itemize inside a minipage:

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}
Stefan
LaTeX.org admin
greenpatriot
Posts: 10
Joined: Tue Aug 10, 2010 10:27 pm

Re: Itemize inside an Array

Post by greenpatriot »

Fannnnnnnnntastic. Thank you!!
Post Reply