Cómo configurar el pie de página del marco en el tema Metropolis

Cómo configurar el pie de página del marco en el tema Metropolis

Me gustaría configurar el pie de página del marco en el tema metrópolis.
Por ahora, acabo de agregar el pie de página con

setbeamertemplate{frame footer}{xyz}

Me gustaría cambiar la fuente del pie de página del marco a:

  • Fuente más pequeña (también para el número de página)
  • Otro color de fuente (gris) (también para el número de página)

¿Es también posible utilizar "autor" e "instituto" en el pie de página de este marco?

\documentclass{beamer}

\usetheme[
 outer/progressbar=frametitle,
 inner/sectionpage=progressbar
]{metropolis}                   

\title{Title}
\subtitle{Subtitle}
\date{\today}
\author{name}
\institute{inst}

\setbeamertemplate{frame footer}{xyz}

\begin{document}
\maketitle

\section{First Section}
\begin{frame}[t]{First Frame}
xxx 1
\end{frame}

\section{Second Section}
\begin{frame}[t]{Second Frame}
xxx 2
\end{frame}

\end{document}

Respuesta1

\documentclass{beamer}

\usetheme{moloch}% modern fork of the metropolis theme
\setbeamertemplate{frame footer}{\insertshortauthor~(\insertshortinstitute)}

\setbeamerfont{page number in head/foot}{size=\tiny}
\setbeamercolor{footline}{fg=gray}

\author{names}
\institute{institute}

\begin{document}
\begin{frame}
content...
\end{frame}
\end{document}

información relacionada