¿Cómo agregar el tema \gracias a la metrópolis?

¿Cómo agregar el tema \gracias a la metrópolis?

Quiero agregar \gracias a mi página de título mientras uso el tema Metropolis, pero en el ejemplo de trabajo mínimo a continuación, no sucede nada: solo un 1 justo al lado del autor, pero nada en la nota al pie.

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

¿Hay alguna forma de agregar esta nota al pie en el tema Metropolis? ¡Gracias!

Respuesta1

En su lugar, podría utilizar una nota a pie de página normal:

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

ingrese la descripción de la imagen aquí

información relacionada