Я хотел бы анимировать некоторые наложения с помощью animatevalue, но не знаю, как остановить анимацию на последнем наложении. Есть ли способ сделать это независимым от ОС и pdf-ридера? Если нет, как это сделать в любом ридере, в котором это можно сделать (подозреваю, что это делает только Adobe Reader, но я не знаю наверняка.).
Вот минимальный пример того, что я хочу анимировать и остановить прямо перед вторым кадром.
\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}