Metropolis 主题中每张幻灯片下的标题和作者姓名

Metropolis 主题中每张幻灯片下的标题和作者姓名

我想知道如何使用大都会主题在每张幻灯片的页脚中添加演示文稿的标题、日期和我的姓名,就像华沙或马德里主题一样。

提前致谢!

答案1

其中一种方法是使用\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}

在此处输入图片描述

相关内容