To have text and images on the same slide, I use this kind of code:
\frametitle{My title}
\begin{tabular}{l}
\parbox{0.5\linewidth}{
\begin{itemize}
\onslide<2->{\item Item 1}
\onslide<3->{\item Item 2}
\end{itemize}}
\end{tabular}
\begin{tabular}{c}
\only<2>{\includegraphics[height=3cm]{Image1}}
\only<3>{\includegraphics[height=3cm]{Image2}}
\end{tabular}
I'm pretty happy with the output, except for this small detail: even if Image1 and Image2 are the same dimensions in pixels, Image2 is slightly shifted to the right compared to Image1. Any idea how to fix this ?
%character after the\onlys – campa Feb 23 '16 at 13:26