如何在 beamer 中的框架标题中添加脚注?

如何在 beamer 中的框架标题中添加脚注?

我有一份 Beamer 文档,我想添加脚注,其中与脚注相对应的数字位于框架的标题处。我有类似的东西,但它似乎不起作用,因为数字 2 出现在标题下方,而不是标题旁边:

\documentclass{beamer}
\begin{document}

\begin{frame}{Test (work in progress)}\footnotemark
\footnotetext[2]{test}
\begin{itemize}
\item Item1
\item Item2
\end{itemize}
\end{frame}

\end{document}

答案1

您已经完成了艰苦的工作,发现在 frametitle 中需要\footnotemark和的组合\footnotetext

只需在框架标题内添加\footnotemark

\documentclass{beamer}
\begin{document}

\begin{frame}{Test (work in progress)\footnotemark}
\footnotetext[2]{test}
\begin{itemize}
\item Item1
\item Item2
\end{itemize}
\end{frame}

\end{document}

答案2

当有多个脚注时,此方法可以正常工作:

\documentclass{beamer}
\begin{document}                                                                                                                                             

\begin{frame}{The first footnote here%
              \setcounter{footnote}{0}\footnotemark}
\stepcounter{footnote}
\footnotetext{First}

And the second there\footnote{Second}.

\end{frame}

\end{document}

投影机输出

相关内容