home *** CD-ROM | disk | FTP | other *** search
/ ftp.pasteur.org/FAQ/ / ftp-pasteur-org-FAQ.zip / FAQ / fonts-faq / part10 < prev    next >
Encoding:
Internet Message Format  |  1996-08-15  |  3.1 KB

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!news.mathworks.com!zombie.ncsc.mil!newsgate.duke.edu!news-feed-1.peachnet.edu!paperboy.wellfleet.com!news3.near.net!amber.ora.com!not-for-mail
  2. From: norm@ora.com (Norman Walsh)
  3. Newsgroups: comp.fonts,comp.answers,news.answers
  4. Subject: comp.fonts FAQ: Unix Info
  5. Supersedes: <font-faq-10_817479312@ora.com>
  6. Followup-To: poster
  7. Date: 14 Aug 1996 10:35:00 -0400
  8. Organization: O'Reilly and Associates, Inc.
  9. Lines: 61
  10. Sender: norm@ruby.ora.com
  11. Approved: news-answers-request@MIT.Edu
  12. Distribution: world
  13. Expires: 27 Sep 1996 14:34:08 GMT
  14. Message-ID: <font-faq-10_840033248@ora.com>
  15. References: <font-faq-1_840033248@ora.com>
  16. Reply-To: norm@ora.com (Norman Walsh)
  17. NNTP-Posting-Host: ruby.ora.com
  18. Summary: This posting answers frequently asked questions about fonts.
  19.          It addresses both general font questions and questions that
  20.          are specific to a particular platform.
  21. X-Web-Homepage: http://www.ora.com/homepages/comp.fonts/
  22. Xref: senator-bedfellow.mit.edu comp.fonts:48308 comp.answers:20522 news.answers:79243
  23.  
  24. Archive-name: fonts-faq/part10
  25. Version: 2.1.5
  26.  
  27. Subject: 5. Unix Information
  28.   
  29.   See also the 'utilities' section for more information.  Most of the
  30.   utilities described in that section run under Unix.
  31.   
  32.   The bulk of this section was contributed by Johannes Schmidt-Fischer in
  33.   Jun 1993.
  34.   
  35.   Unix Font Formats
  36.   =================
  37.   
  38.   Most printers attached to Unix hosts are PostScript printers.  As a
  39.   consequence, most Unix users are also using PostScript fonts.  If you
  40.   are not using a PostScript printer, you need a front-end, like
  41.   GhostScript, to convert the PostScript into a format compatible with
  42.   your printer.
  43.   
  44.   There is no Unix specific Postscript Type 1 format. The most often used
  45.   (and most easily usable) format is Adobe's PFA format.  The other often
  46.   used format is PFB format. The PFB format is more compact (by about
  47.   50%), but in order to use it you need make sure that your font
  48.   downloading tools are prepared to convert PFB to PFA on fly.
  49.   
  50.   Postscript Type 3 fonts are no problem, they can be handled the same
  51.   way as Type 1 fonts.
  52.   
  53.   Most Unix tools expect to get character metric information from AFM
  54.   files.  You may have difficulty using fonts collected off of the 'Net
  55.   if they do not include AFM files
  56.   
  57.   Font Installation
  58.   =================
  59.   
  60.   Application
  61.   -----------
  62.   
  63.   It depends. (Well, what did you expect me to say? ;-)
  64.   
  65.   Printer using an ExitServer
  66.   ---------------------------
  67.   
  68.   Convert PFB fonts into PFA format if necessary and then send them to
  69.   printer inside a wrapper like so:
  70.   
  71.              %!PS-Adobe-2.0 ExitServer Job
  72.              serverdict begin 0 exitserver  % 0: substitute your password
  73.              ...                            % font in PFA-format
  74.              %%EOF
  75.   
  76.   Or include them directly in your print job:
  77.   
  78.              %!PS-Adobe-2.0
  79.              ...                            % font in PFA-format
  80.              ...                            % other initialisation
  81.              %%Page: 1 i                    % beginning of your job...
  82.              ...                            % ...
  83.              %%EOF
  84.   
  85.