unicode-math 中定义了什么来发生这种情况?

unicode-math 中定义了什么来发生这种情况?

初始代码:

\documentclass{book}

\begin{document}
:$\overline {\mathit v}$:
\end{document}

在此处输入图片描述

使用unicode 数学包裹:

\documentclass{book}
\usepackage[bold-style=ISO, mathbf=sym]{unicode-math}
\begin{document}
:$\overline {\mathit v}$:
\end{document}

在此处输入图片描述

补丁代码:

\documentclass{book}
\usepackage[bold-style=ISO, mathbf=sym]{unicode-math}
\setmathfont{TeX Gyre Termes Math}
\begin{document}
:$\overline {v}$:


:$\overline {\mathit{v}}$:
\end{document}

相关内容