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}

記号だけが必要な場合は括弧を外してください$

関連情報