我有一张幻灯片,其中有两张图片部分未显示。其中一个图片有标题和与标题相关的脚注。我能够在正确的时间显示脚注,但脚注分隔符出现在所有幻灯片上,如下所示。MWE 如下所示:
\documentclass[beamer]{standalone}
\usepackage{tikz}
\begin{document}
\begin{frame}
\frametitle{Title}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{figure}
\begin{tikzpicture}
\only<1>
{
\node [inner sep=0pt,opacity=0.2]
{
\includegraphics[height=4cm,keepaspectratio,trim={0 0 0 0},clip]{example-image-a}
};
}
\only<2->
{
\node [inner sep=0pt]
{
\includegraphics[height=4cm,keepaspectratio,trim={0 0 0 0},clip]{example-image-a}
};
}
\end{tikzpicture}
\onslide<2->
{
\caption{Caption 1\footnotemark}
}
\end{figure}
\end{column}
\begin{column}{0.5\textwidth}
\begin{figure}
\begin{tikzpicture}
\only<1-2>
{
\node [inner sep=0pt,opacity=0.2]
{
\includegraphics[height=4cm,keepaspectratio,trim={0 0 0 0},clip]{example-image-b}
};
}
\only<3->
{
\node [inner sep=0pt]
{
\includegraphics[height=4cm,keepaspectratio,trim={0 0 0 0},clip]{example-image-b}
};
}
\end{tikzpicture}
\onslide<3->
{
\caption{Caption 2}
}
\end{figure}
\end{column}
\end{columns}
\footnotetext<2->{Lorem ipsum}
\end{frame}
\end{document}
如何隐藏幻灯片第一部分的脚注分隔符?
更新
我不想使用 \only,因为它会导致图像的位置根据脚注文本的大小而移动。
幻灯片
答案1
只需使用\only
。
\documentclass[beamer]{standalone}
\usepackage{tikz}
\begin{document}
\begin{frame}
\frametitle{Title}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{figure}
\begin{tikzpicture}
\only<1>
{
\node [inner sep=0pt,opacity=0.2]
{
\includegraphics[height=4cm,keepaspectratio,trim={0 0 0 0},clip]{example-image-a}
};
}
\only<2->
{
\node [inner sep=0pt]
{
\includegraphics[height=4cm,keepaspectratio,trim={0 0 0 0},clip]{example-image-a}
};
}
\end{tikzpicture}
\onslide<2->
{
\caption{Caption 1\footnotemark}
}
\end{figure}
\end{column}
\begin{column}{0.5\textwidth}
\begin{figure}
\begin{tikzpicture}
\only<1-2>
{
\node [inner sep=0pt,opacity=0.2]
{
\includegraphics[height=4cm,keepaspectratio,trim={0 0 0 0},clip]{example-image-b}
};
}
\only<3->
{
\node [inner sep=0pt]
{
\includegraphics[height=4cm,keepaspectratio,trim={0 0 0 0},clip]{example-image-b}
};
}
\end{tikzpicture}
\onslide<3->
{
\caption{Caption 2}
}
\end{figure}
\end{column}
\end{columns}
\only<2->{
\footnotetext{Lorem ipsum}}
\end{frame}
\end{document}