假设有三幅图像代表一个过程的三个步骤,那么最好让它们按顺序并排出现,并且在同一水平线上。
在 Beamer 中如何实现这一点?
答案1
- 要在框架内并排显示三幅图像
beamer
,请连续使用三个\includegraphics
命令。请确保所有三幅图像的总宽度小于当前文本宽度,以确保所有图像并排显示。 - 为了使图像均匀分布,请
\hfill
在相邻的\includegraphics
命令之间添加。 - 为了按顺序显示图像,请使用命令
\pause
。
这是一个可编译的 MWE:
\documentclass{beamer}
\begin{document}
\begin{frame}
\includegraphics[width=0.3\linewidth]{example-image-a}\hfill
\pause
\includegraphics[width=0.3\linewidth]{example-image-b}\hfill
\pause
\includegraphics[width=0.3\linewidth]{example-image-c}
\end{frame}
\end{document}