For a presentation, I would like to reveal several items in a list in succession. Right now, the code is as follows; the corresponding (and desired) output is shown at the bottom of my post.
\documentclass{beamer}
\begin{document}
\frame{
\begin{itemize}
\item stay
\begin{itemize}
\item<2-> one
\item<3-> two
\item<4-> three
\end{itemize}
\item stay 2
\begin{itemize}
\item<5-> and four
% \item<> Ooops, forgot something
\item<6-> and five
\end{itemize}
\end{itemize}
}
\end{document}
How can I automate (counters?) the revealing of the items such that there be no need to increase the numbers in <...> by hand. If I need to include one more \item somewhere at the beginning, increasing every subsequent <...> is tedious. I'm thinking about something like a new '\itemnext item I forgot'...


\pausecommand) ? – Ludovic C. Dec 08 '13 at 14:15+-operator, that allows for incremental overlay specifications, check section 9.6.4 of the manual (p. 89). – d-cmst Dec 08 '13 at 14:16