我只是想在同一张幻灯片中插入同一侧的不同图像,这样只会产生图像变化的效果,而幻灯片的其余部分保持不变,包括幻灯片编号。
为此我使用\includegraphics<1>
、、等\includegraphics<2>
。\includegraphics<3>
我将图像包含在内\fbox
,但它留下了一个不需要的水平空间,我不知道如何消除它。
参见我的 MWE:
\documentclass{beamer}
\begin{document}
\begin{frame}
\fbox{\includegraphics[width=.5\linewidth]{example-image-a}}\\
\vspace*{4pt}
\fbox{\includegraphics<1>[width=.5\linewidth]{example-image-a}
\includegraphics<2>[width=.5\linewidth]{example-image-b}
\includegraphics<3>[width=.5\linewidth]{example-image-c}}
\end{frame}
\end{document}
生成结果:
注意下图中的间距,如何消除它?谢谢!
答案1
要去除多余的空白,您可以添加一个%
符号,如下例所示:
\documentclass{beamer}
\begin{document}
\begin{frame}
\fbox{\includegraphics[width=.5\linewidth]{example-image-a}}\\
\vspace*{4pt}
\fbox{\includegraphics<1>[width=.5\linewidth]{example-image-a}%
\includegraphics<2>[width=.5\linewidth]{example-image-b}%
\includegraphics<3>[width=.5\linewidth]{example-image-c}}
\end{frame}
\end{document}
%
关于在行尾使用方法的更多详细信息可以在这里找到:行末百分号(%)有什么用?