[Tex/LaTex] How to connect figures by arrows in Beamer

beamertikz-pgf

In a related post; How to connect Beamer blocks by arrows?, I found this image (latex+beamer):
enter image description here

I would like to do the exact same thing, but replace the 3 blocks by 3 figures. The figures may have different sizes. Any suggestions how I could do that?

Best Answer

No tikz involved here. However, you might be able to find better arrow graphics than those I pulled by scaling up stuff from he MnSymbol package. Where I put my \rules, you can substitute an \includegraphics.

\documentclass{beamer}
\usepackage{MnSymbol}
\usepackage{stackengine}
\centering
\def\figA{\rule{1in}{1in}}
\def\figB{\rule{1.3in}{1in}}
\def\figC{\rule{1.2in}{0.8in}}
\def\arrowA{\scalebox{6}{$\lcurvearrowright$}}
\def\arrowB{\scalebox{6}{$\lcurvearrowsw$}}
\def\arrowC{\scalebox{6}{$\lcurvearrownw$}}
\begin{document}
\stackon[-.05in]{\hspace{.3in}\figA\hspace{.5in}\figB}{\arrowA}\\
\hspace{.2in}\arrowC\belowbaseline[-.3in]{\figC}\arrowB
\end{document}

enter image description here