答案1
看来您想要没有连字符的 TeX Gyre Cursor。因此您可以使用:
\documentclass{article}
\usepackage{unicode-math}
\setmonofont{TeX Gyre Cursor}[Ligatures={NoRare,NoCommon}]
\begin{document}
\texttt{We shall fill in the blank.}
\end{document}
要得到
如果您只想在本地设置该功能,则可以\addfontfeature
在参数中使用\texttt
:
\documentclass{article}
\usepackage{unicode-math}
\setmonofont{TeX Gyre Cursor}
\begin{document}
\texttt{\addfontfeature{Ligatures=NoCommon}We shall fill in the blank.}% without fi ligature
\texttt{We shall fill in the blank.}
\end{document}% with fi ligature
fontspec
有关字体功能的更多信息,请参阅手册Ligatures
。