如何在数学模式中使用 Garamond Premier Pro 自己的字形(例如平方根)(使用 lualatex)?

如何在数学模式中使用 Garamond Premier Pro 自己的字形(例如平方根)(使用 lualatex)?

我正在使用 lualatex(TeXlive 2019)和字体 Garamond Premier Pro,它(如使用 fontforge 拍摄的屏幕截图所示)为以下数学符号提供了特殊字形:n 数组乘积、求和、平方根和积分。

在此处输入图片描述

免责声明:我知道 unicode-math 包文档未提及 Garamond Premier Pro 支持。不过,这就是我迄今为止尝试过的方法:

\documentclass{article}

\usepackage{fontspec}
\usepackage{unicode-math}
%\setmathfont{Cambria Math} %<-- this works fine, of course.
\setmainfont{GaramondPremrPro}[%
  Extension = .otf ,
  Scale=MatchUppercase,
  Numbers={Lining,Proportional},
  Ligatures={TeX,Common,NoRare},
]

\begin{document}

$\sqrt{-1}$

$\int_a^b f(x)dx$

\end{document}

问题:如何使用 lualatex 在数学模式中使用 Garamond Premier Pro 自己的字形(例如平方根)?

相关内容