向 Metropolis beamer 主题添加导航符号

向 Metropolis beamer 主题添加导航符号

是否可以将投影仪“导航符号”添加到 Metropolis 主题中?我的意思是:

https://www.google.com/url?sa=i&url=https%3A%2F%2Ftex.stackexchange.com%2Fquestions%2F286882%2Flatex-beamer-foot-line-navigation-symbols-icons&psig=AOvVaw01LKbJZGE2HRGR0VvfhSxk&ust=1610831860572000&source=images&cd=vfe&ved=0CAIQjRxqFwoTCIDljbrunu4CFQAAAAdAAAAABAP

我知道如何消除演示文稿中的符号,但不知道如何添加将它们带到缺少它们的主题。

答案1

您可以使用\setbeamertemplate{navigation symbols}[horizontal]添加导航符号:

在此处输入图片描述

\documentclass{beamer}
\usetheme{metropolis}
\setbeamertemplate{navigation symbols}[horizontal]

\begin{document}

\begin{frame}
\frametitle{frame title}
frame contents
\end{frame}

\end{document}

相关内容