如何更改 Beamer 中的感谢符号

如何更改 Beamer 中的感谢符号

我的代码是

\documentclass[14pt]{beamer}% http://ctan.org/pkg/beamer
\let\Tiny\tiny% http://tex.stackexchange.com/q/58087/5764
\usetheme{Berkeley}
\usepackage[timeinterval=1]{tdclock}
\makeatletter
\beamer@headheight=1.5\baselineskip
\makeatother
\setbeamercolor{normal text}{bg=black!10}



\begin{document}
\title[Title]{My title%
\thanks{\scriptsize Project supported by foundation: }} %<<----this place
\subtitle{Subtitle}
\author{Author}
\institute[Institute]{My institute}
\date[\initclock\tdtime]{\today}
\logo{\color{blue!50}\scalebox{2}{\TeX}} % you can % it
\begin{frame}
  \titlepage
\end{frame}

\section{A section}
\subsection{A subsection}
\begin{frame}
  \frametitle{Frame title}
  \framesubtitle{frame subtitle}
  Some text
\end{frame}

\begin{frame}
  Some more text
\end{frame}

\section{Another section}
\subsection{Another subsection}
\begin{frame}
  Some final text
\end{frame}
\end{document}

我想将 1 更改为如下所示的 \aleph。我该怎么做?谢谢您的帮助。

在此处输入图片描述

答案1

你可以简单地发出命令

\renewcommand{\thefootnote}{\alph{footnote}}

如果出于任何原因,你想在文档的后面部分恢复数字,你可以使用以下方法恢复正常行为

 \renewcommand{\thefootnote}{\arabic{footnote}}

如果你想让脚注从 1 重新开始,请添加

\addtocounter{footnote}{-1}

相关内容