我有一份 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}