Ich möchte einige Overlays mit AnimateValue animieren, kenne aber keine Möglichkeit, die Animation beim letzten Overlay zu stoppen. Gibt es eine Möglichkeit, dies unabhängig von Betriebssystem und PDF-Reader zu machen? Wenn nicht, wie macht man das in dem Reader, in dem es möglich ist (ich vermute, nur Adobe Reader kann das, aber ich weiß es nicht genau).
Hier ist ein Minimalbeispiel dessen, was ich animieren und direkt vor dem zweiten Frame stoppen möchte.
\documentclass[12pt,t]{beamer}
\DeclareGraphicsExtensions{.pstex,.eps,.ps,.pdf,.png,.jpeg,.jpg}
\setbeameroption{hide notes}
%\usetheme{default}
%\useinnertheme{default}
\usepackage{graphicx,wrapfig}
\setbeamertemplate{footline}{%
\raisebox{5pt}{\makebox[\paperwidth]{\hfill\makebox[20pt]{\color{gray}
\scriptsize\insertframenumber/\inserttotalframenumber}}}\hspace*{5pt}}
\usenavigationsymbolstemplate{}
\begin{document}
\newlength\ciscowidth
\begin{frame}
\animate<2-35>
\animatevalue<1-35>{\ciscowidth}{0.7\textwidth}{0.2\textwidth}
\frametitle{``Layered'' Data Centre}
\begin{wrapfigure}[5]{R}{\ciscowidth}%\ciscowidth}
%\includegraphics[width=\ciscowidth]{cisco-layered.jpg}
\end{wrapfigure}
~\uncover<36->{
Here is a bunch of text
Here is a bunch of text
Here is a bunch of text
Here is a bunch of text
Here is a bunch of text
Here is a bunch of text
Here is a bunch of text
Here is a bunch of text
Here is a bunch of text
Here is a bunch of text
}
\end{frame}
\begin{frame}
\frametitle{Another frame}
\end{frame}
\end{document}