Neo Euler Math 字型與 XeLaTeX

Neo Euler Math 字型與 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}

但後來我得到了拉丁現代數學字體,這並不理想。所以,我的問題是,如何在 XeLaTeX 中正確使用 Neo Euler Math 字體。我正在使用 TexLive 2015。

相關內容