如何修复 Adob​​e Acrobat 中的数学字体问题

如何修复 Adob​​e Acrobat 中的数学字体问题

我正在使用 latex beamer 制作幻灯片,我想使用 FiraMath 作为数学环境的字体。一切似乎都很顺利,因为在 texstudio 中生成此文档时没有任何警告。但是当我尝试使用 adobe acrobat 打开此 pdf 时,即使我已安装 FiraMath-Regular,也无法提取嵌入的字体。

我怎么解决这个问题?

我使用以下代码来设置我的投影仪的字体:

\documentclass{beamer}
\RequirePackage{fontspec}
\setmainfont{Arial}
\setsansfont{Arial}

\RequirePackage{unicode-math}
\setmathfont{Fira Math}

\begin{document}
    \begin{equation}
        x_{k} - b_{k-1}x_{k-1} \geqslant 0, \for k = 1, 2, \cdots, m
    \end{equation}
\end{document}

当我尝试制作一些符号,例如$\cdots$时,它可以在 texstudio 内的查看器或其他 pdf 查看器(例如 google chrome)中显示,但无法在 Adob​​e Acrobat 中识别。

相关内容