- 我用美丽的
metropolis
beamer
我使用带有dark
background
主题。 - 据我所知,该主题使用Fira Sans作为主要字体,到目前为止我很喜欢它。
- 问题是,当我使用
\textbf
(粗体)字体时,bold
字母看起来太类似于normalfont
。 - 问题:我是否仍可以使用相同的字体,但让小字体的正常字体和粗体字体之间的区别更加明显?理想情况下,我可以使用以下解决方案背页。
% Compile with LuaLaTeX
\documentclass{beamer}
\usetheme[background = dark]{metropolis}
\begin{document}
\begin{frame}{Frame Title}
normaltext\textbf{textbf}
\par
{\tiny normalfont\textbf{textbf}}
\end{frame}
\end{document}
答案1
\documentclass{beamer}
\usetheme[background = dark]{metropolis}
% The magic happens here
\setsansfont[ItalicFont={Fira Sans Light Italic},%
BoldFont={Fira Sans SemiBold},%
BoldItalicFont={Fira Sans Italic}]%
{Fira Sans Light}%
\begin{document}
\begin{frame}{Frame Title}
normaltext\textbf{textbf}
\par
{\tiny normalfont\textbf{textbf}}
\end{frame}
\end{document}