> Now to find out why the fonts on Plan 9 create nice print outs but really > awkward text inside of PDF files. My theory is that gs is not stuffing all > of the fonts in as it should. >
here are some mk rules that build a proper pdf
that will view nicely on other systems:
%.ps:DQ: %.ms
eval `{doctype macros.ms $stem.ms} | \
lp -m.9 -dstdout >$target
%.pdf:DQ: %.ps
cat /sys/doc/docfonts $stem.ps >_$stem.ps
ps2pdf _$stem.ps $stem.pdf && rm -f _$stem.ps
- erik
