latex 嵌入所有字体

时间:2022-10-29 06:39:28

在加入eps图像的时候,我们需要先用源码生成div->ps,再将ps生成pdf,这是会出现字体不能全部嵌入的问题。IEEEpaper检测的时候会提示这种错误“There are * This document has * non-embedded".


选择使用以下两个命令:

gs -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/printer -dCOMPatibilityLevel=1.4 -dMaxSubsetPct=100 -dSubsetFonts=true -dEmbedAllFonts=true -sOutputFile=${PRJ}.pdf ${PRJ}.ps 

ps2pdf -sDEVICE=pdfwrite -dAutoRotatePages=/All -dCOMPatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dMaxSubsetPct=100  -dSubsetFonts=true -dEmbedAllFonts=true ${PRJ}.ps ${PRJ}.pdf

一般来讲,前者要强于后者。