メトロポリステーマに\thanksを追加するにはどうすればいいですか?

メトロポリステーマに\thanksを追加するにはどうすればいいですか?

Metropolis テーマを使用しているときにタイトル ページに \thanks を追加したいのですが、以下の最小限の動作例では何も起こりません。著者のすぐ横に 1 が表示されるだけで、脚注には何も表示されません。

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

Metropolis テーマにこの脚注を追加する方法はありますか? ありがとうございます!

答え1

代わりに通常の脚注を使用することもできます。

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

ここに画像の説明を入力してください

関連情報