Neo Euler 数学字体与 XeLaTeX

Neo Euler 数学字体与 XeLaTeX

我正在尝试使用以下代码生成我的 xelatex PDF 文档。主要问题是我收到错误

! Internal error: bad native font flag in `map_char_to_glyph'

当我编辑我的文档时

\documentclass[a4paper,11pt]{article}
% XeLaTeX
\usepackage{polyglossia}
\setmainlanguage{english}
\usepackage{unicode-math}
\usepackage{fontspec}
\setmainfont{Neo Euler}
\setmathfont{Neo Euler}
\usepackage{blindtext}
\blindmathtrue
\begin{document}
    \blindmathpaper
    \blindmathpaper
\end{document}

如果我删除该行,问题就会消失

\setmathfont{Neo Euler}

但随后我得到的是 Latin Modern Math 字体,这并不理想。所以,我的问题是,如何在 XeLaTeX 中正确使用 Neo Euler Math 字体。我使用的是 TexLive 2015。

相关内容