我想知道如何使用大都会主题在每张幻灯片的页脚中添加演示文稿的标题、日期和我的姓名,就像华沙或马德里主题一样。
提前致谢!
答案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}