
Ich möchte bei Verwendung des Metropolis-Designs „\thanks“ zu meiner Titelseite hinzufügen, aber im minimal funktionierenden Beispiel unten passiert nichts – nur eine 1 direkt neben dem Autor, aber nichts in der Fußnote.
\documentclass[aspectratio = 169]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage{appendixnumberbeamer}
\usepackage{booktabs}
\usepackage[scale=2]{ccicons}
\usepackage{pgfplots}
\usepgfplotslibrary{dateplot}
\usepackage{xspace}
\newcommand{\themename}{\textbf{\textsc{metropolis}}\xspace}
\title{Short and snappy title}
% \subtitle{A modern beamer theme}
\date{\today}
\author{Author~One \and Author~Two\thanks{I acknowledge Thankee One's assistance.}}
\institute{Random Institute}
Gibt es eine Möglichkeit, diese Fußnote im Metropolis-Design hinzuzufügen? Danke!
Antwort1
Sie könnten stattdessen eine normale Fußnote verwenden:
\documentclass[aspectratio = 169]{beamer}
\usetheme[progressbar=frametitle]{moloch}% modern fork of the metropolis theme
\title{Short and snappy title}
% \subtitle{A modern beamer theme}
\date{\today}
\author{Author~One \and Author~Two\footnote{I acknowledge Thankee One's assistance.}}
\institute{Random Institute}
\begin{document}
\begin{frame}[plain]
\vskip-0.1cm
\maketitle
\end{frame}
\end{document}