In a beamer presentation I'm trying to display two different images during the same item in itemize. If I add a \pause\pause between the items the images are not displayed.
So, how should I display the "Three, then four" item twice?
Probably this is a really stupid question but I couldn't find a solution searching on these pages or on the web.
\begin{frame} \frametitle{Title} \begin{columns} \column{.4\textwidth} \begin{minipage}[c][.6\textheight][c]{\linewidth} \begin{itemize}[<+->] \item One \item Two \item Three, then four \item Five \end{itemize} \end{minipage} \column{.6\textwidth} \center \includegraphics<1>{fig_1} \includegraphics<2>{fig_2} \includegraphics<3>{fig_3} \includegraphics<4>{fig_4} \includegraphics<5>{fig_5} \end{columns} \end{frame} Thanks, Pie