Fußnotensymbol in Beamer

Fußnotensymbol in Beamer

Wie kann ich in einem Beamer-Frame eine Fußnote mit Symbol (wie †) erstellen? Ich habe Optionen von diesem ausprobiertSymbole statt Zahlen als Fußnotenmarkierungen Sie funktionieren jedoch nicht für Beamer und ich bekomme immer noch hochgestellten Text.

Antwort1

An den neuen Wunsch des OP angepasst. Funktioniert, ist aber meiner Meinung nach hässlich.

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

Entfernen Sie die Klammern, wenn Sie nur ein $Schild möchten.

verwandte Informationen