Document ClassesBeamer-Subitem

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
BMAcox
Posts: 40
Joined: Sun Dec 23, 2007 12:07 am

Beamer-Subitem

Post by BMAcox »

Hello:

Referring to the Beamer documentation, I am unclear of how to format subitems within each slide. The following did not work:

\begin{enumerate}
\item<1-> my first bullet.
\item<2-> my second bullet:
\subitem first detail pertaining to my second bullet.
\subitem second detail pertaining to my second bullet.
\end{enumerate}

The subitems themselves do not necessarily have to have some bullet in front of it as it just pertains to the major item.

Thanks alot!
BMAcox

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Beamer-Subitem

Post by gmedina »

Maybe I am not understanding your question. You can nest the standard list-like environments (enumerate,itemize, description). Take a look at the following example:

Code: Select all

\documentclass{beamer}

\begin{document}

\begin{frame}
\begin{enumerate}
  \item First item
  \item Second item
  \begin{enumerate}
    \item Subitem two one 
    \item Subitem two two 
  \end{enumerate}
\end{enumerate}
\end{frame}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply