How to get TeX with NEXTSTEP to make proper fonts for a 600 dpi laserwriter?
600dpi TeX fonts TeX, 600dpi If you upgrade to a 600 dpi laserwriter then the version of TeX that ships with NEXTSTEP (either 2.X or 3.0) does not know about 600 dpi fonts, i.e. does not know how to make them and will instead use scaled 400 dpi ones (which look significantly worse at 600 dpi than they do at 400 dpi). Some simple modifications to a few Metafont files and rebuilding the metafont bases are all that is needed. What to do to get the 600 dpi stuff working is as follows : * Edit /usr/lib/mf/inputs/next.mf and add a laserjetIV mode. Simply copy the entire imagen mode, change the name to laserjetIV, and change the pixels_per_inch to 600. Save the changed file. * Build a new mf.base file by executing the following commands : inimf “plain ; input next ; dump” (as superuser) : cp plain.base /usr/lib/mf/bases/mf.base * Edit /usr/lib/tex/ps/config.ps and change the `D 400’ line to `D 600’ (you may have `D 300’ or something else if you’ve set up a different printer.) * Edit /usr/bin/
600dpi TeX fonts TeX, 600dpi If you upgrade to a 600 dpi laserwriter then the version of TeX that ships with NEXTSTEP (either 2.X or 3.0) does not know about 600 dpi fonts, i.e. does not know how to make them and will instead use scaled 400 dpi ones (which look significantly worse at 600 dpi than they do at 400 dpi). Some simple modifications to a few Metafont files and rebuilding the metafont bases are all that is needed.