仅当单击时才显示图像

仅当单击时才显示图像

我是 Latex 新手。我正在制作演示文稿幻灯片,我需要仅在单击(或按向右箭头)时显示一些图像

我尝试了其他问题中提到的以下两种方法,但都没有用:

第一的:includegraphices在里面插入编号<>

\begin{frame}{SomeFrame}
\begin{figure}[h!]
\begin{center}
\includegraphics<0->[scale=.5]{SomeImage.png}
\end{center}
\caption{SomeCaption}
\label{fig:SomeImage}
\end{figure}
\end{frame}

第二:正在使用\onslide<1->{}

\begin{frame}{SomeFrame}
\onslide<1->{
\begin{figure}[h!]
\begin{center}
\includegraphics<0->[scale=.5]{SomeImage.png}
\end{center}
\caption{SomeCaption}
\label{fig:SomeImage}
\end{figure}
}
\end{frame}

这两种方式,我都尝试过 和 一次<0-><1->但是,无需点击,图片就出现了。我应该怎么办?

答案1

如果希望图像出现在框架的第二张幻灯片上,请使用

\includegraphics<2->[scale=.5]{SomeImage}

[将 Paul Gaborits 的评论转化为 CW 答案;如果您想自己回答,请随意回答,我将删除此答案。]

相关内容