Title and Author Name under every Slide in Metropolis Theme

beamerheader-footerpositioningpresentations

I would like to know how I can add my presentation title, its date, and my name in footline of every slide using Metropolis theme, just like in Warsaw or Madrid themes, for example.

Thanks in advance!

Best Answer

One way to do it is using \setbeamertemplate{frame footer}{...}:

\documentclass{beamer}
\usetheme{metropolis}

\title{The title of the presentation}
\author{Anonymous}
\date{\today}

\setbeamertemplate{frame footer}{\insertdate{} -- \insertshortauthor{} -- \insertshorttitle}

\begin{document}

\frame[plain]{\titlepage}

\begin{frame}{Sample}
Text
\end{frame}

\end{document}

enter image description here