如何在 Beamer 中更改脚注?

如何在 Beamer 中更改脚注?

我想将 Beamer 演示文稿中的脚注符号字母更改为数字。我该如何实现?

答案1

没有最小的工作示例,我所能做的就是猜测;脚注的标准行为beamer类似于标准类中的行为:“常规”文本中为数字,但内部minipagecolumns环境中为字母,如下例所示:

\documentclass{beamer}

\begin{document}

\begin{frame}
\begin{columns}
\column{.6\textwidth}
Some text\footnote{a test footnote inside a \texttt{columns} or \texttt{minipage} environment.}
\stepcounter{footnote}
\end{columns}
Some text\footnote{a test regular footnote.}
\end{frame}

\end{document}

在此处输入图片描述

这是因为有两个不同的计数器在起作用:footnote用于“常规文本”脚注和mpfootnote用于minipage或内的脚注。如果您希望或columns内的脚注也使用阿拉伯数字编号,则需要重新定义计数器的表示形式;您可能还需要采取步骤来保持与常规脚注的同步性;以下是上述代码及其修改:columnsminipagempfootnotefootnote

\documentclass{beamer}

\renewcommand\thempfootnote{\arabic{mpfootnote}}

\begin{document}

\begin{frame}
\begin{columns}
\column{.6\textwidth}
Some text\footnote{a test footnote inside a \texttt{columns} or \texttt{minipage} environment.}
\stepcounter{footnote}
\end{columns}
Some text\footnote{a test regular footnote.}
\end{frame}

\end{document}

在此处输入图片描述

相关内容