我有一个演示文稿,其中项目符号一个接一个地出现。在其中一个演示文稿中,我使用 \footnote 引用了一篇作品。不幸的是,该命令并不关心 \pause 命令,这意味着引用已经出现在框架的第一张幻灯片上。下面是一个最小的工作示例。理想情况下,我希望引用与第二个项目符号同时出现。
如果有人能帮助我,那就太好了。特别是,任何能完成这项工作的命令都非常受欢迎。
干杯,马克斯
\documentclass[10pt,xcolor={usenames,dvipsnames}]{beamer}
\begin{document}
\begin{frame}
\begin{itemize}
\item Unfortunately, the footnote appears already before the second point
\item \pause ... where the actual citation takes place\footnote{Citation}
\end{itemize}
\end{frame}
\end{document}
答案1
就像 egreg 所说的那样,您应该使用 \only<> 命令。在您的示例中,您应该这样做
\only<2->{\footnote{Citation}}
这意味着它将\footnote{Citation}
在您在该幻灯片上进行下一次演示后立即出现。