如何将 mtpro2 与其他数学字体一起使用?

如何将 mtpro2 与其他数学字体一起使用?

例如,加载mtpro2XITS-Math针对不同的段落

但似乎mtpro2不能unicode-math一起加载

错误如下:

LaTeX error: "kernel/command-already-defined"
! 
! Control sequence \notsimeq already defined.

我的代码

\documentclass{article}
\usepackage[lite,subscriptcorrection,slantedGreek,nofontinfo]{mtpro2}
\usepackage{fontspec}
\setmainfont{Source Serif Pro}  

\usepackage{unicode-math} % to use \setmathfont

\begin{document}
    Source Serif Pro $f=|a|/3$ with mtpro2 \\

  {\setmathfont[StylisticSet=1]{XITS Math}
    Source Serif Pro $f=|a|/3$ with XITS Math}

\end{document}

答案1

要使用传统数学字体(如mtpro2TrueType 或 OpenType 文本字体),请加载mathspec而不是unicode-math

相关内容