[Tex/LaTex] Applying \pause for each item in beamer

beameritemizepause

In order to make items appear sequentially in beamer mode, I would typically use:

\begin{itemize}
\item No.1 \pause
\item No.2 \pause
\item No.3 \pause
\end{itemize

So I have to type '\pause' three times.

Is there instead something like:

\pauseall \begin{itemize}
\item No.1 
\item No.2 
\item No.3 
\end{itemize

… which applies '\pause' to each item?

Best Answer

Yes. Consider the option [<+->] for itemize, enumerate, and description:

\begin{itemize}[<+->]
\item first
\item second
\item third
\end{itemize}

See Section 12 of the Beamer manual for details.