答案1
这是 的一个已知弱点unicode-math
:它需要从最后声明的字体中进行数学排版的几个参数。一个简单的解决方法是再次加载具有空范围的主字体:
\documentclass[12pt]{article}
\usepackage{unicode-math,mathtools}
\setmathfont{xits-math.otf}
\setmathfont[range={scr,bfscr}]{latinmodern-math.otf}
\setmathfont[range={}]{xits-math.otf}
\begin{document}
\[ \overline{\symup{X}} \]
\end{document}