我在 Windows 字体文件夹中安装了 minion otf 字体。这使我能够使用 fontspec 加载字体。但我没有数学字体。如何使用 fontspec 加载机制和 lualatex 启用数学字体?
\documentclass[]{scrbook}
\usepackage{amsmath}
\usepackage{unicode-math}
\usepackage{fontspec}
\setmainfont{Minion Pro}
\setsansfont{Myriad Pro}
\begin{document}
\chapter*{Font Test}
The text on these pages demonstrates the appearance of the used fonts for serif, \textsf{sans serif}, math and \texttt{typewriter fonts}.
%
\subsection*{Green's theorem}
\begin{equation}
\underset{\mathcal{G}\quad}\iiint
\left[u\nabla^{2}v+\left(\nabla u,\nabla v\right)\right]\mathrm{d}^{3}V
=\underset{\mathcal{S}\quad}\oiint u\,\frac{\partial v}{\partial n}
\,\,\mathrm{d}^{2}A
\end{equation}
\end{document}