我无法使用 Google Fonts 中的 Fraunces 获取正确的字体粗细(光学或其他)(https://fonts.google.com/specimen/Fraunces) 和 LuaTeX。它是一种可变字体!
输出是一种大而粗的字体,我无法找出 fontspec 的正确参数来为输出提供适当的权重(手动或自动)
\documentclass[10pt]{beamer}
\usepackage{fontspec}
\defaultfontfeatures{RawFeature={+axis={wght=100}}}
\newfontfamily\headingfont[
Kerning=On,
Renderer=HarfBuzz,
Path = ./, % Directory of the fonts
UprightFont = *,
ItalicFont = *Italic,
UprightFeatures = {RawFeature={+axis={wght=100}} },
BoldFeatures = { RawFeature={+axis={wght=100} }},
]{Fraunces}
\begin{document}
\begin{frame}
\centering
\headingfont
\Large Some Text \\
\medskip
\normalsize More Text
\vfill
\end{frame}
\end{document}