我有整个 Minion Pro / Math 字体包,并想在自制课程中使用它们,但只有其中一些有效,而大多数无效。
Minion Pro 包含大小:常规、capt、disp 和副标题 宽度:常规和浓缩 权重:常规、中等、半粗体和粗体 差异:常规和斜体
和所有组合
我真的不明白为什么它不起作用,因为我使用了 fontspec 文档中显示的代码。
% !TeX TS-program = lualatex
\documentclass{scrbook}
\usepackage{fontspec}
\setmainfont{MinionPro}[
Extension = {.otf},%
% these work
UprightFont = {*-Regular},%
ItalicFont = {*-It},%
BoldFont = {*-Bold},%
BoldItalicFont = {*-BoldIt},%
FontFace = {sb}{\updefault}{*-Semibold},%
FontFace = {sb}{it}{*-SemiboldIt},%
% these do not
FontFace = {c}{n}{*-Cn},%
%FontFace = {sbc}{\updefault}{*-SemiboldCn}
%FontFace = {md}{\updefault}{*-Medium},%
%FontFace = {md}{it}{*MediumIt},%
SizeFeatures = {
{Size = 6.01-8.41, Font = MinionPro-Capt.otf},
{Size = 8.41-13.01, Font = MinionPro-Regular.otf},
{Size = 13.01-19.91, Font = MinionPro-Subh.otf},
{Size = 19.91-, Font = MinionPro-Disp.otf}
}]
% here I declare some commands to use the new fonts
% Commands to use the different fonts
\DeclareRobustCommand{\sbseries}{\fontseries{sb}\selectfont}
\DeclareTextFontCommand{\textsb}{\sbseries}
\DeclareRobustCommand{\sbiseries}{\fontseries{sbi}\selectfont}
\DeclareTextFontCommand{\textsbi}{\sbiseries}
\DeclareRobustCommand{\cnseries}{\fontseries{cn}\selectfont}
\DeclareTextFontCommand{\textcn}{\cnseries}
\begin{document}
\cnseries Test
\end{document}
只有常规、斜体、粗体、粗体斜体、半粗体和半粗体斜体。
到目前为止,我专注于使压缩字体起作用,但其他组合也不起作用。如上所述,FontFace = {c}{n}{*-Cn}
是从fontspec文档中取出的,所以我不明白,为什么这不起作用
有人可以告诉我我做错了什么吗?