如何强制使用 Type3 字体?

如何强制使用 Type3 字体?

这个问题有点不寻常,因为大多数与 Type3 相关的问题都要求相反,避免使用光栅化字体。

但是我正在尝试字体和 PDF 表单,我想使用栅格化字体进行测试。如何实现?

梅威瑟:

\documentclass{article}
\begin{document}
hello
\end{document}

答案1

您可以抑制地图文件的加载,并强制使用位图字体

\documentclass{article}
\pdfmapfile{}
\begin{document}
hello
\end{document}

相关内容