让图片出现在演示文稿中

让图片出现在演示文稿中

最近我问问题,关于如何让项目符号出现在 Latex Beamer 文档的框架内。

我该如何用图片来实现这一点?假设我想要一张幻灯片,其中上半部分包含一个图表,单击后下半部分会出现另一个图表。我之前问题的答案在这种情况下没有帮助,因为没有 itemize/enumerate 环境。任何帮助都非常感谢!

答案1

Beamer 实现了覆盖规范,允许使用图形作为覆盖。graphicx 包中的 \includegraphics(由 Beamer 自动加载)扩展为

\includegraphics<number>[options]{graphicfilename}

例如,它的工作方式类似于 itemize 环境中的 \item<>。一个基本示例:

\documentclass{beamer}
\usetheme{Darmstadt}
\begin{document}
\begin{frame}{Only one frame}
    \begin{figure}
        \includegraphics<1>[width=.8\textwidth]{example-image-a}
        \includegraphics<2>[width=.5\textwidth]{example-image-b}
    \end{figure}
\end{frame}
\end{document}

相关内容