我想更改 Beamer 块中的脚注符号。
我使用了以下命令。
\usepackage[symbol]{footmisc}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
然后,块件中未使用的致谢和脚注符号发生了变化。但块中使用的脚注符号没有改变。
请告诉我如何改变它们?
我是一名日本学生,所以我希望你能原谅我英语方面的小错误。
答案1
你可以使用与https://tex.stackexchange.com/a/18500/36296
\documentclass{beamer}
\usetheme{Warsaw}
\renewcommand{\thempfootnote}{\ifcase\value{mpfootnote}\or\textasteriskcentered\or\textdagger\or\textdaggerdbl\fi}
\begin{document}
\begin{frame}
\begin{block}{title}
content\footnote{text}
\end{block}
abc\footnote{test}
\end{frame}
\end{document}