Most of the time when I’m dealing with my slides, it’s very common to do this:
\begin{itemize}
\item<1-> This is an item
\item<2-> This is another item
\end{itemize}
This, however, is very time consuming, and I just recently found a tip: just pass the overlay specification into the itemize environment itself!
\begin{itemize}[<+->]
\item This is an item
\item This is another item
\end{itemize}
Observe the <+->, which tells the overlay to increment the pause count onwards.
However, I still do have some personal problem: I preferred the items not to be shown any in the very first slide (Beamer’s normal behaviour, to my understanding, is to show the first item on the first slide). In other words, I wanted to pause since the very first item.
This does the job neatly:
\begin{itemize}[<+(0)->]
\item This is an item
\item This is another item
\end{itemize}
Leave a Reply