如何在 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}

在此輸入影像描述

這是 os ,因為有兩個不同的計數器在起作用:footnote用於「常規文字」腳註和或mpfootnote內的腳註。如果您希望腳註位於內部或也使用阿拉伯數字進行編號,您需要重新定義計數器的表示形式;您可能還需要採取措施以保持與常規腳註的同步性;這是經過上述修改的上述程式碼:minipagecolumnscolumnsminipagempfootnotefootnote

\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}

在此輸入影像描述

相關內容