My printing company is complaining about some T3 fonts in a PDF I created (using "PDFTextify" in WinEDT). The image below shows how Acrobat DC reports these fonts:
Running the "pdffonts" command on my PDF prints many entries for these fonts (apparently they are embedded):
name type encoding emb sub uni
[none] T3 Custom yes no no
[none] T3 Custom yes no no
...
[none] T3 Custom yes no no
If the fonts ARE EMBEDDED but are bitmats (as described here), how can I detect which package / instances are the offending ones, so that I can try change them to use other fonts?
Thanks, Jorge.
FINAL UPDATE: I found the culprits! I have stand-alone-generated tables that use the siunitx package, and (by default?) it was using bitmap fonts for some greek letters! Adding \usepackage{lmodern} as advised here replaced these fonts and solved the issue. Cased closed, thanks so much everyone for your help!
MWE:
\documentclass{standalone}
\usepackage{siunitx}
%\usepackage{lmodern}
\begin{document}
\begin{tabular}{l}
\SI{8.8}{\micro\meter}\\
\end{tabular}
\end{document}
Outputs without \usepackage{lmodern}:
name type encoding emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
PEJPSC+CMR10 Type 1 Builtin yes yes no 4 0
CUJHND+CMMI10 Type 1 Builtin yes yes no 5 0
[none] Type 3 Custom yes no no 6 0
Outputs with \usepackage{lmodern}:
name type encoding emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
JQGWLD+LMRoman10-Regular Type 1 Custom yes yes no 4 0
DGEJQT+LMMathItalic10-Regular Type 1 Custom yes yes no 5 0
JQGWLD+LMRoman10-Regular Type 1 Custom yes yes no 6 0



pdffonts: where are Arial and Helvetica? – egreg Apr 24 '19 at 11:04\PassOptionsToPackage{draft}{graphicx}early enough (e.g. before documentclass). – Ulrike Fischer Apr 24 '19 at 11:53siunitx) and the solution, I think they are not really the same. – dontpanic Apr 24 '19 at 14:21