Beamer:如何将图像显示为分步图像

时间:2011-01-13 17:24:17

标签: image latex beamer

我正在尝试使用 Beamer 类进行演示。我想在一帧中逐个显示一个简单的图像列表,就像使用 itemize< + - > 时一样。

我可以逐个显示图像,但每次插入新图像时图像都会移动。我如何解决这个问题 - 从我的角度来看,必须有一个简单的解决方案,而不指定图像的绝对位置。

5 个答案:

答案 0 :(得分:48)

您可以简单地指定一系列图像:

\includegraphics<1>{A}
\includegraphics<2>{B}
\includegraphics<3>{C}

这将生成三张幻灯片,图片A到C恰好是 同样的立场。

答案 1 :(得分:40)

我通过使用visible-command找到了解决问题的方法。

编辑:

\visible<2->{
   \textbf{Some text}
   \begin{figure}[ht]
       \includegraphics[width=5cm]{./path/to/image}
    \end{figure}
 }

答案 2 :(得分:8)

这就是我所做的:

\begin{frame}{series of images}
\begin{center}
\begin{overprint}

\only<2>{\includegraphics[scale=0.40]{image1.pdf}}
\hspace{-0.17em}\only<3>{\includegraphics[scale=0.40]{image2.pdf}}
\hspace{-0.34em}\only<4>{\includegraphics[scale=0.40]{image3.pdf}}
\hspace{-0.17em}\only<5>{\includegraphics[scale=0.40]{image4.pdf}}

\only<2-5>{\mbox{\structure{Figure:} something}}

\end{overprint}
\end{center}
\end{frame}

答案 3 :(得分:3)

\includegraphics<1>{A}%
\includegraphics<2>{B}%
\includegraphics<3>{C}%

%很重要。这将使所有图像保持固定。

答案 4 :(得分:0)

这是我用来解决问题的示例代码。

\begin{frame}{Topic 1}
Topic of the figures
\begin{figure}
\captionsetup[subfloat]{position=top,labelformat=empty}
\only<1>{\subfloat[Fig. 1]{\includegraphics{figure1.jpg}}}
\only<2>{\subfloat[Fig. 2]{\includegraphics{figure2.jpg}}}
\only<3>{\subfloat[Fig. 3]{\includegraphics{figure3.jpg}}}
\end{figure}
\end{frame}