我有一些带有叠加层的幻灯片,其中包含不断演变的图片:
\documentclass[handout]{beamer}
\begin{document}
\begin{frame}
\includegraphics<1>{stage1.png}
\includegraphics<2>{stage12.png}
\includegraphics<3>{stage123.png}
\end{frame}
\end{document}
默认情况下,所有图形都包含在讲义中。但我真的只想看到最后一张,其中包含其他图形中包含的所有信息。同时显示所有图形会破坏布局。
是否有命令可以实现此目的,即从讲义中删除幻灯片的部分内容?或者我可以用不同的方式添加图形吗?
答案1
<x|handout:0>
只需在规范中使用:
\documentclass[handout]{beamer}
\begin{document}
\begin{frame}
\includegraphics<1|handout:0>{stage1.png}
\includegraphics<2|handout:0>{stage12.png}
\includegraphics<3>{stage123.png}
\end{frame}
\end{document}
请参阅第 9.6.2 节beameruserguide.pdf
“模式规范”。