大都市主题:更改标题页上的机构字体大小

大都市主题:更改标题页上的机构字体大小

我正在使用 Metropolis Beamer 主题(https://github.com/matze/mtheme)。我正在创建一个开头的标题页,其中包含我的机构。默认情况下,机构的字体比其他部分小。我想将其重新调整为正常大小。将其嵌入到环境中\begin{normalsize}不起作用。

我已阅读自定义手册,但找不到。有人知道该怎么做吗?

答案1

您可以像下面这样更改字体大小:

\documentclass{beamer}
\usetheme{moloch}% modern fork of the metropolis theme

\institute{institute}
\setbeamerfont{institute}{size=\normalsize}

\begin{document}
    
\begin{frame}
    \titlepage
\end{frame} 
    
\end{document}

相关内容