IEEE pdf express
May 6, 2011
I got a problem when I tried to submit my paper to an IEEE conference. It was not accepted because:
- Bookmarks were found
- Fonts were not embedded
Bookmarks were found
To solve this problem, all I had to do was to load the hyperref package, with the following option:
\usepackage[bookmarks=false]{hyperref}
Fonts were not embedded
I had to run gswin32 with the following options:
-dSAFER -dNOPLATFONTS -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sPAPERSIZE=letter -dCompatibilityLevel=1.4 –>dPDFSETTINGS=/printer -dCompatibilityLevel=1.4 -dMaxSubsetPct=100 -dSubsetFonts=true -dEmbedAllFonts=true
(via Mohammad Hamed Firooz’s homepage).
Advertisement