I want my eventual PDF to have all fonts embedded. Using special psdots in pstricks is causing this to fail. Here is a MWE of something which results in non-embedded fonts:
\documentclass[10pt]{article}
\usepackage{pstricks,epsfig,pst-node}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{pspicture}(0,0)(3,3)
\psdots[dotstyle=asterisk](0,0)
\psdots[dotstyle=o](0,0)
\psdots[dotstyle=triangle*](0,0)
\psdots[dotstyle=diamond*](0,0)
\psdots[dotstyle=pentagon*](0,0)
\end{pspicture}
\end{document}
Here is output from pdffonts:
[mishchea@linty mwe]$ pdffonts mwe.pdf
name type encoding emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
SDXKYB+CMR10 Type 1 Builtin yes yes no 6 0
Times-Roman Type 1 Standard no no no 13 0
[none] Type 3 Custom yes no no 14 0



config.psthe PostScript fonts are always embedded by default – Sep 27 '12 at 15:04