home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / linux / extra / docs / maillist / text / archive.96 / text1230.txt < prev    next >
Encoding:
Text File  |  1996-07-25  |  3.9 KB  |  105 lines

  1.  
  2. DB> What's happening is that Word is telling your "printer" (in this case, 
  3. DB> Ghostscript) "Hey, this document uses Helvetica; switch to that font!"  
  4. DB> Ghostscript looks through it's fonts directory and loads the Helvetica 
  5. DB> font from there.  (yes, this is *not* the "real" Helvetica, but a 
  6. DB> public-domain version which does look pretty trashy).  So, when you want 
  7. DB> to install a new font in Word (say, Zapf Dingbats) you will have to 
  8. DB> install an corresponding Postscript font into Ghostscript.  I am not 
  9. DB> sure how to do this; if someone knows how, I would be very curious to 
  10. DB> find out.
  11. DB> 
  12. DB> Ghostscript can also supposedly take Adobe-style Postscript fonts, so 
  13. DB> that you can buy the Adobe font CD and plug in "real" versions of 
  14. DB> Helvetica, etc.  Again, I'm not sure how to do this, and would gladly 
  15. DB> appreciate some enlightenemnt.
  16.  
  17. You have to adjust the Fontmap like this:
  18.  
  19. ----------------------cut-------------------------
  20. /AvantGarde-Book        (agw_____.pfb)    ;
  21. /AvantGarde-BookOblique        (agwo____.pfb)    ;
  22. /AvantGarde-Demi        (agd_____.pfb)    ;
  23. /AvantGarde-DemiOblique        (agdo____.pfb)    ;
  24.  
  25. /Bookman-Light            (bkl_____.pfb)    ;
  26. /Bookman-LightItalic        (bkli____.pfb)    ;
  27. /Bookman-Demi            (bkd_____.pfb)    ;
  28. /Bookman-DemiItalic        (bkdi____.pfb)    ;
  29.  
  30. /Courier            (cour.pfb)    ;
  31. /Courier-Oblique        /Courier-Italic    ;
  32. /Courier-Italic            (couri.pfb)    ;
  33. /Courier-Bold            (courb.pfb)    ;
  34. /Courier-BoldOblique        /Courier-BoldItalic    ;
  35. /Courier-BoldItalic        (courbi.pfb)    ;
  36.  
  37. /Helvetica            (helv.pfb)    ;
  38. /Helvetica-Oblique        /Helvetica-Italic    ;
  39. /Helvetica-Italic        (helvi.pfb)    ;
  40. /Helvetica-Bold            (helvb.pfb)    ;
  41. /Helvetica-BoldOblique        /Helvetica-BoldItalic    ;
  42. /Helvetica-BoldItalic        (helvbi.pfb)    ;
  43.  
  44. /Helvetica-Narrow        /Sans-Narrow    ;
  45. /Sans-Narrow            (hln_____.pfb)    ;
  46.  
  47. /NewCenturySchlbk-Roman        /CenturySchlbk-Roman    ;
  48. /CenturySchlbk-Roman        (ncr_____.pfb)    ;
  49. /NewCenturySchlbk-Italic    /CenturySchlbk-Italic    ;
  50. /CenturySchlbk-Italic        (nci_____.pfb)    ;
  51. /NewCenturySchlbk-Bold        /CenturySchlbk-Bold    ;
  52. /CenturySchlbk-Bold        (ncb_____.pfb)    ;
  53. /NewCenturySchlbk-BoldItalic    /CenturySchlbk-BoldItalic    ;
  54. /CenturySchlbk-BoldItalic    (ncbi____.pfb)
  55.  
  56. /Palatino-Roman            /Palton-Roman    ;
  57. /Palton-Roman            (por_____.pfb)    ;
  58. /Palatino-Italic        /Palton-Italic    ;
  59. /Palton-Italic            (poi_____.pfb)    ;
  60. /Palatino-Bold            /Palton-Bold    ;
  61. /Palton-Bold            (pob_____.pfb)    ;
  62. /Palatino-BoldItalic        /Palton-BoldItalic    ;
  63. /Palton-BoldItalic        (pobi____.pfb)    ;
  64.  
  65. /Symbol                (sy______.pfb)    ;
  66.  
  67. /Times-Roman            /TimesNewRoman    ;
  68. /TimesNewRoman            (tnr.pfb)    ;
  69. /Times-Italic            /TimesNewRoman-Italic    ;
  70. /TimesNewRoman-Italic        (tnri.pfb)    ;
  71. /Times-Bold            /TimesNewRoman-Bold    ;
  72. /TimesNewRoman-Bold        (tnrb.pfb)    ;
  73. /Times-BoldItalic        /TimesNewRoman-BoldItalic    ;
  74. /TimesNewRoman-BoldItalic    (tnrbi.pfb)    ;
  75.  
  76. /ZapfChancery-Oblique        /ZapfChancery-MediumItalic    ;
  77. /ZapfChancery-MediumItalic    (zcmi____.pfb)    ;
  78.  
  79. /ZapfDingbats            (zd______.pfb)    ;
  80. ------------------------cut---------------------------------------
  81.  
  82. I always download the fonts while printing to file from Windows Apps,
  83. so the Fontmap is used by Ghostscript only when looking for a font not
  84. already built into the printer (Ghostscript). As you can't download while
  85. printing from executor (uses only bitmapped Fonts), ghostscript will use
  86. the Fontmap or does some intelligent font substitution (to Courier or some
  87. other Font) by itself. If it looks for a font like 'Garamond', that is not
  88. listed in Fontmap, Ghostscript will do the substitution.
  89.  
  90. OK, lets install the Futura-Book: Copy the font fu______.pfb that you
  91. bought from Adobe to the Ghostscript font directory. If you don't have the
  92. pc-font, you can use REFONT.EXE to convert the mac resource of 'FuturBol'
  93. to fu______.pfb (don' know if really necessary). The Fontmap entry would be:
  94.  
  95. /Futura-Book             (fu______.pfb);
  96.  
  97. Now you want to use Helvetica-Narrow, but you have only Sans-Narrow that
  98. you want to install in Fontmap. Look at my Fontmap how to tell Ghostscript
  99. to use Sans-Narrow when printing from word with Helvetica-Narrow.
  100.  
  101. -Karsten
  102.  
  103.  
  104.  
  105.