此代码
\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
The initial image\\
\includegraphics[width=0.6\paperwidth]{example-image-a}
\end{frame}
\begin{frame}
The same image\\
after some changes have been made\\
\includegraphics[width=0.6\paperwidth]{example-image-b}
\end{frame}
\end{document}
产生输出
我希望图像停留在一个位置,而文本在每张幻灯片上发生变化。如何实现?
答案1
在特殊情况下,当您的两幅图像具有相同的尺寸时,您可以简单地交换它们:
\documentclass{beamer}
\begin{document}
\begin{frame}
\alt<1>{The initial image}{The same image}
\visible<2->{after some changes have been made}
\includegraphics<1>[width=0.6\paperwidth]{example-image-a}%
\includegraphics<2->[width=0.6\paperwidth]{example-image-b}
\end{frame}
\end{document}
无关:
- 你不需要
graphicx
使用 beamer 加载,beamer 已经提供了此功能 - 最好使用空行来表示新段落