[ACCEPTED]-How to change an image on a slide in Latex?-beamer
Accepted answer
Try using \only instead of \onslide.
Otherwise 2 you might want to try something like:
\begin{column}[r]{2cm}
\begin{figure}
\includegraphics<1>[width=2cm,height=3.5cm]{First.eps}
\includegraphics<2>[width=2cm,height=3.5cm]{Second.eps}
\caption<1>{First Image}
\caption<2>{Second Image}
\end{figure}
\end{column}
I hope 1 this helps.
Just as a small addition.
Instead of
\caption<1>{First Image}
\caption<2>{Second Image}
use 1
\caption{\only<1>{First Image}\only<2>{Second Image}}
This worked fine for me.
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.