我有一个显示两种样式的字体fc-list
,分别对应两个 TTF 文件:
Humanistic:style=Regular
Humanistic:style=Cursive
如何在 fontspec 中选择草书样式?
答案1
您可以使用 检查字体名称otfinfo -i <font-file>
。
在这种特殊情况下你可以使用
\documentclass{scrartcl}
\usepackage[english]{babel}
\usepackage{fontspec,blindtext}
\setmainfont{Humanistic}
\newfontface\humanisticcursive{Humanistic Cursive}% Create a new font face for the Cursive style
\begin{document}
\blindtext
\humanisticcursive{\blindtext}% Apply the new font face
\end{document}