我想将 Beamer 演示文稿中的脚注符号字母更改为数字。我该如何实现?
答案1
没有最小的工作示例,我所能做的就是猜测;脚注的标准行为beamer
类似于标准类中的行为:“常规”文本中为数字,但内部minipage
或columns
环境中为字母,如下例所示:
\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
内的脚注也使用阿拉伯数字编号,则需要重新定义计数器的表示形式;您可能还需要采取步骤来保持与常规脚注的同步性;以下是上述代码及其修改:columns
minipage
mpfootnote
footnote
\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}