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
Document Classes ⇒ Beamer-Subitem
NEW: TikZ book now 40% off at Amazon.com for a short time.
Beamer-Subitem
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,...