当查看器不支持动画时,如何为“\animategraphics”选择默认帧?

当查看器不支持动画时,如何为“\animategraphics”选择默认帧?

我制作了一个带有一些动画的投影仪。这是我的代码示例:

\usepackage{animate}
\begin{document}
\begin{figure}[!ht]
    \centering
    \animategraphics[autoplay,loop,width=\textwidth]{2}{../figures/sim_scan/res_scan_sim_}{0}{50}
    \caption{Simulation of the \textit{ScanSAR} mode}
    \label{res_scan_animation}
\end{figure}
\end{document}

我想知道,有没有办法选择显示哪一帧当 pdf查看器不支持动画或者当其被打印出来时?

答案1

该选项的值poster决定首先打印和显示动画的哪一帧。这应该适用于任何 PDF 查看器。

默认显示序列的第一帧。或者,可以显示最后一帧 ( poster=last) 或根本不显示任何帧 ( poster=none)。

此外,自版本 以来2014/11/25,可以通过为选项提供一个整数将任何动画帧指定为海报帧poster。例如poster=99显示第 100 帧(帧编号从 0 开始)。


poster=first是默认行为,不需要明确给出。

相关内容