Beamer 中的脚注符号

Beamer 中的脚注符号

在 Beamer 框架中,我如何制作带符号(例如 †)的脚注?我尝试过以下选项使用符号代替数字作为脚注标记 然而它们不适用于 Beamer,我仍然得到文本上标。

答案1

已修改以适应 OP 的新愿望。 可以工作但很丑,恕我直言。

\documentclass{beamer}
\makeatother
\renewcommand{\thefootnote}{\ifcase\value{footnote}\or(\$)\or
(\$\$)\or(\$\$\$)\or(\$\$\$\$)\or(\#)\or(\#\#)\or(\#\#\#)\or(\#\#\#\#)\or(\#\#\#\#\#)\fi}
\makeatletter
\begin{document}
\begin{frame}
Text\footnote{Text of the footnote}
\end{frame}
\end{document}

如果您只想要一个符号,请删除括号$

相关内容