Me gustaría animar algunas superposiciones usando animatevalue, pero no conozco una manera de detener la animación en la última superposición. ¿Hay alguna manera de hacer esto independiente del sistema operativo y del lector de PDF? Si no, ¿cómo se hace en cualquier lector en el que se pueda hacer? (Sospecho que solo Adobe Reader lo hace, pero no estoy seguro).
Aquí hay un ejemplo mínimo de lo que quiero animar y detenerme justo antes del segundo fotograma.
\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}