[Tex/LaTex] When I use \animate in beamer, how to move back in the presentation

animationsbeamer

Matthew Leingang just provided a nice example of beamer's \animate method. If in this example (don't want to repeat it here) I replace \animate<2-10> with \animate<3-10>, how will I then be able to move back from the last page to the second page? (Moving to the first page is easy …) I tried the navigation symbols, but to no avail.

Best Answer

It starts with an empty frame. Clicking the mouse button views the presentation, clicking again starts it, but not if you click into the frame of the object (look at the mouse pointer!). At the end of the presentation you can click into the object and will go back to the second frame.

\documentclass{beamer}
\usepackage{tikz}

\begin{document}

\begin{frame}
\hypertarget<2>{2nd}{}
\hyperlink<2-10>{2nd}{%
\begin{tikzpicture}[every node/.style={draw}]
\node (s) {sender};
\node (r) at (5,0) {receiver};
\animate<3-10>
\foreach \pos in {0.1,0.2,...,1.0} {
  \action<+>{
    \path (s) -- (r) node[pos=\pos,coordinate] (p) {};
    \draw[->] (s) -- (p);
  }
}
\end{tikzpicture}
}
\end{frame}

\end{document}