Linux中國

Linux有問必答:如何在PDF中嵌入LaTex中的所有字體

當你從LaTex中生成PDF文檔時(例如用pdflatex或dvipdfm),可能並不是所有的字體都嵌入在PDF文檔中。例如,pdffonts下面的輸出中提示PDF文檔中有缺少的字體(如Helvetica)。

為了避免這樣的問題,下面是如何在LaTex編譯時嵌入所有的字體

$ latex document.tex
$ dvips -Ppdf -G0 -t letter -o document.ps document.dvi
$ ps2pdf -dPDFSETTINGS=/prepress 
-dCompatibilityLevel=1.4 
-dAutoFilterColorImages=false 
-dAutoFilterGrayImages=false 
-dColorImageFilter=/FlateEncode 
-dGrayImageFilter=/FlateEncode 
-dMonoImageFilter=/FlateEncode 
-dDownsampleColorImages=false 
-dDownsampleGrayImages=false 
document.ps document.pdf 

現在你可以看到所有的字體都被嵌入到PDF中了。

via: http://ask.xmodulo.com/embed-all-fonts-pdf-document-latex.html

譯者:geekpi 校對:wxy

本文由 LCTT 原創翻譯,Linux中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國