I know similar questions have been asked in this forum and I've read many threads about it, but I cannot get it working like I want it to.
I have a slide with some text in the left column. Then I want to insert the first picture in the right (with a click) and after the next click I want the second picture appear in the same spot (right column) while the first one disappears.
Now I got that working with \visible but I get the problem that the text is moving downwards when clicking.
I tried \onslide and \only as well with different options like <1> and <1-> but neither worked out.
Here's some example:
\frame{ %
%
\frametitle{Frametitle}
\begin{columns}
\begin{column}{0.5\textwidth}
\textbf{bold text} \\
\begin{itemize}
\item text1
\item text2
\item an equation
\end{itemize}
\end{column}
\pause
\begin{column}{0.5\textwidth}
\begin{center}
\visible<2>{
\includegraphics<2>[width=.7\textwidth]{image1.png}
} \pause
%----
\visible<3>{
\includegraphics<3>[width=.7\textwidth]{image2.png}
}
\end{center}
\end{column}
\end{columns}
}
Would appreciate your help - thanks!
5cmto the height of your largest image? – samcarter_is_at_topanswers.xyz May 09 '17 at 12:27