tlmgr 更新后 newtxmath 失败

tlmgr 更新后 newtxmath 失败

我进行了更新,现在使用以下代码和 lualatex 或 xelatex (pdflatex 没问题) 时出现错误:

\documentclass{article}
\usepackage{newtxmath}
\begin{document}
Hello
\end{document}

错误是这样的:

! Undefined control sequence. 
l.2619 \pdfglyphtounicode
                       {nPerp}{2AEB 2215}% .. ..

我认为这是一个错误。

我该如何举报?

答案1

tx 字体是 8 位字体,对于 luatex 来说并不是非常理想,但您可以加载 luatex85 兼容性来定义与 pdftex 兼容的命令名称。

\documentclass{article}
\usepackage{luatex85}
\usepackage{newtxmath}
\begin{document}
Hello
\end{document}

这也许应该报告给 newtxmath 维护者,以便它提供更好的错误或与 luatex 自动协作。

相关内容