[Tex/LaTex] Beamer figure grows larger when pointing on it

beamergraphics

I am working on a beamer presentation where I would like to place a couple of graphs on one slide. The resolution is however not sufficient and I was wondering if it would be possible to enlarge the graphs to the full screen size if pointing with the cursor?

Best Answer

The following produces five slides: the first contains four images that are scaled down to fit within one frame, and the rest of the four slides each contains a bigger version of the images. By clicking on a smaller image, you can jump to the slide containing the bigger version of that image, and clicking the larger image will take you back to the initial slide of four images.

\documentclass{beamer}

\begin{document}

\begin{frame}{Cards}\label{cards}
\centering
\hyperlink{img1_alone}{\includegraphics[scale=.25]{img1}}
\hyperlink{img2_alone}{\includegraphics[scale=.25]{img2}}
\hyperlink{img3_alone}{\includegraphics[scale=.25]{img3}}
\hyperlink{img4_alone}{\includegraphics[scale=.25]{img4}}\par
\end{frame}

\begin{frame}{Jack}\label{img1_alone}
\centering
\hyperlink{cards}{\includegraphics[scale=.7]{img1}}\par
\end{frame}

\begin{frame}{Queen}\label{img2_alone}
\centering
\hyperlink{cards}{\includegraphics[scale=.7]{img2}}\par
\end{frame}

\begin{frame}{King}\label{img3_alone}
\centering
\hyperlink{cards}{\includegraphics[scale=.7]{img3}}\par
\end{frame}

\begin{frame}{Ace}\label{img4_alone}
\centering
\hyperlink{cards}{\includegraphics[scale=.7]{img4}}\par
\end{frame}

\end{document}

enter image description hereenter image description here