Document Classes ⇒ Beamer-Subitem
Beamer-Subitem
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
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
Beamer-Subitem
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}