home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / softsys / andrew / 1330 < prev    next >
Encoding:
Internet Message Format  |  1992-11-09  |  1.4 KB

  1. Path: sparky!uunet!usc!zaphod.mps.ohio-state.edu!malgudi.oar.net!caen!spool.mu.edu!agate!ucbvax!ANDREW.CMU.EDU!rr2b+
  2. From: rr2b+@ANDREW.CMU.EDU (Robert Andrew Ryan)
  3. Newsgroups: comp.soft-sys.andrew
  4. Subject: Printers
  5. Message-ID: <sezhmOG00Woi4dukwr@andrew.cmu.edu>
  6. Date: 9 Nov 92 21:48:10 GMT
  7. Sender: usenet@ucbvax.BERKELEY.EDU
  8. Organization: The Internet
  9. Lines: 27
  10.  
  11. We are investigating having ATK print direct to Postscript, to relieve
  12. the dependence on troff/groff and psdit.
  13.  
  14. I'm curious how many and what different Postscript interpreter versions
  15. are being used out there.  Here we have one printer with interpreter
  16. version 38.0, and another reports 52.3 (Here the version is reported on
  17. the cover page, I'm not sure if that happens in general.)
  18.  
  19. The biggest issues are Level 2 operators, and ISO-Latin-1 support. 
  20. Apparently ISO-Latin-1 support appeared in interpreter version 47.0.  In
  21. versions prior to this there are 3 characters outright missing and a
  22. number of others which would have to be constructed by composition of
  23. other characters.
  24.  
  25. The following postscript code will print the interpreter version number
  26. in the lower left corner.  If you use ATK printing (or would like to)
  27. and you can, please print this on your printer(s) and let me know what
  28. it says.
  29.  
  30. Thanks for any info,
  31. -Rob Ryan
  32. Andrew Consortium
  33.  
  34. %!
  35. /Helvetica findfont 20 scalefont setfont
  36. 100 100 moveto version show
  37.  
  38.