是否可以使用覆盖层来自动揭示 Beamer 框架?

是否可以使用覆盖层来自动揭示 Beamer 框架?

对于带有叠加层的标准 Beamer 演示文稿,可以通过单击按钮(或类似按钮)来显示项目。我有一个演示文稿,希望特定幻灯片每次自动显示一个项目,但会延迟一段时间。可以吗?

我在下面添加了一个虚构的 MWE。虚构的,因为 \delay{n} 命令不存在。是否有其他命令可以执行相同的操作?我尽我所能地在 Google 上搜索并查看了手册,但没有找到任何内容。我的平台是 Linux,evince我的查看器也是 Linux,如果这有什么区别的话。

\documentclass{beamer}

\begin{document}

\begin{frame}{Frame 1 --- Manual uncover}

\begin{itemize}
\item<1-> Items
\item<2-> are uncovered
\item<3-> by the click
\item<4-> of a button.
\end{itemize}

\end{frame}

\begin{frame}{Frame 2 --- Auto-uncover}

\begin{itemize}
\item Items \delay{3}
\item are uncovered \delay{3}
\item every 3 seconds.
\end{itemize}

\end{frame}

\begin{frame}{Frame 3 --- Normal}

\begin{itemize}
\item<1-> Items
\item<2-> are uncovered
\item<3-> by the click
\item<4-> of a button.
\end{itemize}

\end{frame}

\end{document}

答案1

您可以使用 启用自动幻灯片更改\transduration<0-2>{<time in seconds>},但并非所有 pdf 查看器都支持此功能(它在演示模式下与 Adob​​e Reader 配合使用)。

\documentclass{beamer}

\begin{document}

\begin{frame}{Frame 2 --- Auto-uncover}
\transduration<0-2>{0.5}
\begin{itemize}[<+->]
\item Items 
\item are uncovered
\item every 3 seconds.
\end{itemize}

\end{frame}


\end{document}

相关内容