Here is a beamer frame that shows "Item 1" in the first slide, "Item 1 Item 2" in the second and only "Item 1 Item 3" in the third. How can I get the same result without having to count the items for \uncover<2>?
I tried changing it to \uncover<.>, but then "Item 2" never appeared.
\documentclass[pdf]{beamer}
\begin{document}
\begin{frame}{Introduction}
\begin{itemize}
\item Item 1
\pause
\uncover<2>{\item Item 2}
\pause
\item Item 3
\end{itemize}
\end{frame}
\end{document}
enumerateenvironment that already has a counterenumiin it. You can combine that with the\uncoverstatement to create a new macro. – papabravo Jun 10 '13 at 14:08