Skip to main content.

2007-Oct-02

When I attempt to print a postscript that was made from an HTML that had these special characters: ≤ and ≥ it failed. My workaround was to convert to PDF and back to postscript with:
ps2pdf -dEmbedAllFonts=true ~/output.ps assignment2.pdf
pdf2ps assignment2.pdf assignment2-2.ps
The -dEmbedAllFonts=true was required. I need to find a better way than this.