使用GitHub上的这款beamer主题,请问如何修改正文字体呢?https://github.com/matze/mtheme
mwe如下:
\documentclass{beamer}
\usetheme{metropolis}
\title{A A A}
\date{\today}
\author{aaaa}
\institute{Centre for Modern Beamer Themes}
\begin{document}
\maketitle
\section{F}
\begin{frame}{F}
hello, world!
\end{frame}
\end{document}
这个模板是 TeXLive 自带的,不需要下载,更换字体的话我这里以 SourceSansPro-Regular.otf
与 FandolHei-Regular.otf
为例进行了替换
\documentclass{ctexbeamer}
\usetheme{metropolis}
\setsansfont{SourceSansPro-Regular.otf}
\setCJKsansfont{FandolHei-Regular.otf}
\title{A A A}
\date{\today}
\author{aaaa}
\institute{Centre for Modern Beamer Themes}
\begin{document}
\maketitle
\section{F}
\begin{frame}{F}
hello, world!
中文
\end{frame}
\end{document}
关于 beamer 的字体设置我在 https://syvshc.github.io/2021-03-03-beamer-font-set/ 这里整理了一下,也可以看看。
好滴好滴,我去试试看,谢谢您啦!