home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Updates / GhostScript / !GhostScr / 6_01 / lib / Fontmap.GS < prev    next >
Text File  |  2000-03-09  |  14KB  |  406 lines

  1. % Copyright (C) 1996, 1999 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of Aladdin Ghostscript.
  3. % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. % or distributor accepts any responsibility for the consequences of using it,
  5. % or for whether it serves any particular purpose or works at all, unless he
  6. % or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. % License (the "License") for full details.
  8. % Every copy of Aladdin Ghostscript must include a copy of the License,
  9. % normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. % the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. % under certain conditions described in the License.  Among other things, the
  12. % License requires that the copyright notice and this notice be preserved on
  13. % all copies.
  14.  
  15. % $Id: Fontmap.GS,v 1.1 2000/03/09 08:40:39 lpd Exp $
  16. % Fontmap - standard font catalog for Ghostscript.
  17.  
  18. % ----------------------------------------------------------------
  19.  
  20. % This file is a catalog of fonts known to Ghostscript.  Any font
  21. % that is to be loaded automatically when named must be in this catalog,
  22. % except for fonts that Ghostscript finds automatically in directories
  23. % named in the GS_FONTPATH environment variable.
  24.  
  25. % Each font has an entry consisting of three items:
  26. %
  27. %    - The name by which the font is known inside Ghostscript
  28. %    (a Ghostscript name preceded by a `/', or a string enclosed
  29. %    in parentheses).  This is used to find the file from which
  30. %    a font of a given name should be loaded.
  31. %
  32. %    - Information depending on whether this is a real font or a
  33. %    font alias:
  34. %
  35. %        - For real fonts, the name of the Ghostscript font
  36. %        file (a Ghostscript string, enclosed in parentheses).
  37. %        The filename should include the extension, which (by
  38. %        convention) is `.gsf'.  `.pfa' and `.pfb' files are
  39. %        also usable as fonts for Ghostscript.
  40. %
  41. %        - For font aliases, the name of the font which should
  42. %        be used when this one is requested, preceded by a
  43. %        `/'.  See the entry for Charter below for an example.
  44. %        Note that an alias name cannot be enclosed in parentheses.
  45. %
  46. %    - At least one space or tab, and a terminating semicolon.
  47.  
  48. % Because of limitations in the MS-DOS environment, Ghostscript font
  49. % file names must be no more than 8 characters long, must consist only
  50. % of LOWER CASE letters, digits, and underscores, and must start with a
  51. % letter.  Font names, on the other hand, need only obey the syntax of
  52. % names in the Ghostscript language, which is much more liberal.
  53.  
  54. % The following table is actually a Ghostscript data structure.
  55. % If you add new entries, be sure to copy the punctuation accurately;
  56. % in particular, you must leave at least one space or tab between each
  57. % field in the entry.  Also, please read fonts.doc for important information
  58. % about font names.
  59.  
  60. % Note that .pfa and .pfb fonts are compatible with Adobe Type Manager
  61. % and other programs that don't include full PostScript interpreters,
  62. % as well as with PostScript interpreters; .gsf fonts are compatible with
  63. % PostScript interpreters, but not with ATM or similar programs.
  64.  
  65. %
  66. % Fonts contributed by:
  67. %    URW++ Design and Development Incorporated
  68. %    Poppenbuetteler Bogen 29A
  69. %    D-22399 Hamburg
  70. %    Germany
  71. %    tel. +49 (40) 60 60 50
  72. %    fax +49 (40) 60 60 51 11
  73. %    http://www.urwpp.de
  74. % for distribution under the GNU License and Aladdin Free Public License.
  75. % See the notice at the head of this Fontmap file for licensing terms.
  76. % Each of these fonts is individually covered by the license:
  77. % for licensing purposes, they are not "part of" any larger entity.
  78. % The following notice applies to these fonts:
  79. %
  80. %    Copyright URW Software, Copyright 1994 by URW.
  81. %
  82.  
  83. % Actual fonts
  84.  
  85. /URWBookmanL-DemiBold    (b018015l.pfb)    ;
  86. /URWBookmanL-DemiBoldItal    (b018035l.pfb)    ;
  87. /URWBookmanL-Ligh    (b018012l.pfb)    ;
  88. /URWBookmanL-LighItal    (b018032l.pfb)    ;
  89.  
  90. /NimbusMonL-Regu    (n022003l.pfb)    ;
  91. /NimbusMonL-ReguObli    (n022023l.pfb)    ;
  92. /NimbusMonL-Bold    (n022004l.pfb)    ;
  93. /NimbusMonL-BoldObli    (n022024l.pfb)    ;
  94.  
  95. /URWGothicL-Book    (a010013l.pfb)    ;
  96. /URWGothicL-BookObli    (a010033l.pfb)    ;
  97. /URWGothicL-Demi    (a010015l.pfb)    ;
  98. /URWGothicL-DemiObli    (a010035l.pfb)    ;
  99.  
  100. /NimbusSanL-Regu    (n019003l.pfb)    ;
  101. /NimbusSanL-ReguItal    (n019023l.pfb)    ;
  102. /NimbusSanL-Bold    (n019004l.pfb)    ;
  103. /NimbusSanL-BoldItal    (n019024l.pfb)    ;
  104.  
  105. /NimbusSanL-ReguCond    (n019043l.pfb)    ;
  106. /NimbusSanL-ReguCondItal    (n019063l.pfb)    ;
  107. /NimbusSanL-BoldCond    (n019044l.pfb)    ;
  108. /NimbusSanL-BoldCondItal    (n019064l.pfb)    ;
  109.  
  110. /URWPalladioL-Roma    (p052003l.pfb)    ;
  111. /URWPalladioL-Ital    (p052023l.pfb)    ;
  112. /URWPalladioL-Bold    (p052004l.pfb)    ;
  113. /URWPalladioL-BoldItal    (p052024l.pfb)    ;
  114.  
  115. /CenturySchL-Roma    (c059013l.pfb)    ;
  116. /CenturySchL-Ital    (c059033l.pfb)    ;
  117. /CenturySchL-Bold    (c059016l.pfb)    ;
  118. /CenturySchL-BoldItal    (c059036l.pfb)    ;
  119.  
  120. /NimbusRomNo9L-Regu    (n021003l.pfb)    ;
  121. /NimbusRomNo9L-ReguItal    (n021023l.pfb)    ;
  122. /NimbusRomNo9L-Medi    (n021004l.pfb)    ;
  123. /NimbusRomNo9L-MediItal    (n021024l.pfb)    ;
  124.  
  125. /StandardSymL    (s050000l.pfb)    ;
  126.  
  127. /URWChanceryL-MediItal    (z003034l.pfb)    ;
  128.  
  129. /Dingbats    (d050000l.pfb)    ;
  130.  
  131. % Aliases
  132.  
  133. /Bookman-Demi            /URWBookmanL-DemiBold    ;
  134. /Bookman-DemiItalic        /URWBookmanL-DemiBoldItal    ;
  135. /Bookman-Light            /URWBookmanL-Ligh    ;
  136. /Bookman-LightItalic        /URWBookmanL-LighItal    ;
  137.  
  138. /Courier            /NimbusMonL-Regu    ;
  139. /Courier-Oblique        /NimbusMonL-ReguObli    ;
  140. /Courier-Bold            /NimbusMonL-Bold    ;
  141. /Courier-BoldOblique        /NimbusMonL-BoldObli    ;
  142.  
  143. /AvantGarde-Book        /URWGothicL-Book    ;
  144. /AvantGarde-BookOblique        /URWGothicL-BookObli    ;
  145. /AvantGarde-Demi        /URWGothicL-Demi    ;
  146. /AvantGarde-DemiOblique        /URWGothicL-DemiObli    ;
  147.  
  148. /Helvetica            /NimbusSanL-Regu    ;
  149. /Helvetica-Oblique        /NimbusSanL-ReguItal    ;
  150. /Helvetica-Bold            /NimbusSanL-Bold    ;
  151. /Helvetica-BoldOblique        /NimbusSanL-BoldItal    ;
  152.  
  153. /Helvetica-Narrow        /NimbusSanL-ReguCond    ;
  154. /Helvetica-Narrow-Oblique    /NimbusSanL-ReguCondItal    ;
  155. /Helvetica-Narrow-Bold        /NimbusSanL-BoldCond    ;
  156. /Helvetica-Narrow-BoldOblique    /NimbusSanL-BoldCondItal    ;
  157.  
  158. /Palatino-Roman            /URWPalladioL-Roma    ;
  159. /Palatino-Italic        /URWPalladioL-Ital    ;
  160. /Palatino-Bold            /URWPalladioL-Bold    ;
  161. /Palatino-BoldItalic        /URWPalladioL-BoldItal    ;
  162.  
  163. /NewCenturySchlbk-Roman        /CenturySchL-Roma    ;
  164. /NewCenturySchlbk-Italic    /CenturySchL-Ital    ;
  165. /NewCenturySchlbk-Bold        /CenturySchL-Bold    ;
  166. /NewCenturySchlbk-BoldItalic    /CenturySchL-BoldItal    ;
  167.  
  168. /Times-Roman            /NimbusRomNo9L-Regu    ;
  169. /Times-Italic            /NimbusRomNo9L-ReguItal    ;
  170. /Times-Bold            /NimbusRomNo9L-Medi    ;
  171. /Times-BoldItalic        /NimbusRomNo9L-MediItal    ;
  172.  
  173. /Symbol                /StandardSymL    ;
  174.  
  175. /ZapfChancery-MediumItalic    /URWChanceryL-MediItal    ;
  176.  
  177. /ZapfDingbats            /Dingbats    ;
  178.  
  179. %
  180. % Type 1 fonts contributed to the X11R5 distribution.
  181. %
  182.  
  183. % The following notice accompanied the Charter fonts.
  184. %
  185. % (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA.
  186. %
  187. % You are hereby granted permission under all Bitstream propriety rights
  188. % to use, copy, modify, sublicense, sell, and redistribute the 4 Bitstream
  189. % Charter (r) Type 1 outline fonts and the 4 Courier Type 1 outline fonts
  190. % for any purpose and without restriction; provided, that this notice is
  191. % left intact on all copies of such fonts and that Bitstream's trademark
  192. % is acknowledged as shown below on all unmodified copies of the 4 Charter
  193. % Type 1 fonts.
  194. %
  195. % BITSTREAM CHARTER is a registered trademark of Bitstream Inc.
  196.  
  197. /CharterBT-Roman        (bchr.pfa)    ;
  198. /CharterBT-Italic        (bchri.pfa)    ;
  199. /CharterBT-Bold            (bchb.pfa)    ;
  200. /CharterBT-BoldItalic        (bchbi.pfa)    ;
  201.  
  202. % Aliases
  203.  
  204. /Charter-Roman            /CharterBT-Roman    ;
  205. /Charter-Italic            /CharterBT-Italic    ;
  206. /Charter-Bold            /CharterBT-Bold        ;
  207. /Charter-BoldItalic        /CharterBT-BoldItalic    ;
  208.  
  209. % The following notice accompanied the Utopia font:
  210. %
  211. %   Permission to use, reproduce, display and distribute the listed
  212. %   typefaces is hereby granted, provided that the Adobe Copyright notice
  213. %   appears in all whole and partial copies of the software and that the
  214. %   following trademark symbol and attribution appear in all unmodified
  215. %   copies of the software:
  216. %
  217. %           Copyright (c) 1989 Adobe Systems Incorporated
  218. %           Utopia (R)
  219. %           Utopia is a registered trademark of Adobe Systems Incorporated
  220. %
  221. %   The Adobe typefaces (Type 1 font program, bitmaps and Adobe Font
  222. %   Metric files) donated are:
  223. %
  224. %           Utopia Regular
  225. %           Utopia Italic
  226. %           Utopia Bold
  227. %           Utopia Bold Italic
  228.  
  229. /Utopia-Regular        (putr.pfa)    ;
  230. /Utopia-Italic        (putri.pfa)    ;
  231. /Utopia-Bold        (putb.pfa)    ;
  232. /Utopia-BoldItalic    (putbi.pfa)    ;
  233.  
  234. %
  235. % Fonts contributed by URW GmbH for distribution under the GNU License.
  236. % The following notice accompanied these fonts:
  237. %
  238. % U004006T URW Grotesk 2031 Bold PostScript Type 1 Font Program
  239. % U003043T URW Antiqua 2051 Regular Condensed PostScript Type 1 Font Program
  240. %
  241. % Copyright (c) 1992 URW GmbH, Hamburg, Germany
  242. %
  243. % This program is free software; you can redistribute it and/or modify
  244. % it under the terms of the GNU General Public License as published by
  245. % the Free Software Foundation; either version 2 of the License, or
  246. % (at your option) later version.
  247. %
  248. % This program is distributed in the hope that it will be useful,
  249. % but WITHOUT ANY WARRANTY; wihtout even the implied warranty of
  250. % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  251. % See the GNU General Public License for more details.
  252. %
  253. % You should have received a copy of the GNU General Public License
  254. % along with this program; if not, write to the Free Software
  255. % Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 U.S.A.
  256. %
  257. % Address:
  258. % URW GmbH
  259. % PC Support
  260. % Harksheider Strasse 102
  261. % 2000 Hamburg 65
  262. % Germany
  263. % Phone: +49 40 60 60 50       (Reception)
  264. % Phone: +49 40 60 60 52 30   (PC Support)
  265. % Fax    : +49 40 60 60 52 52
  266. %
  267.  
  268. /URWAntiquaT-RegularCondensed    (u003043t.gsf)    ;
  269. /URWGroteskT-Bold        (u004006t.gsf)    ;
  270.  
  271. %
  272. % Shareware Kana fonts.  These are subject to the following notice:
  273. %
  274. % These copyrighted fonts were developed by Kevin Hartig. Permission is
  275. % granted to freely distribute them in entirety along with this statement.
  276. % This is shareware. If you decide to use these fonts please contribute
  277. % $10 US to help support further freeware and shareware software development.
  278. % Questions and comments may be sent to:
  279. %
  280. % hartig@fsl.noaa.gov
  281. % khartig@nyx.cs.du.edu
  282. %
  283. % Kevin Hartig
  284. % 1126 Collyer Street
  285. % Longmont, CO 80501 USA
  286. % copyright 1993.
  287.  
  288. % Hiragana and Katakana fonts.  The character names are inappropriate,
  289. % and the encoding is probably not related to any known standard.
  290.  
  291. /Calligraphic-Hiragana        (fhirw.gsf)    ;
  292. /Calligraphic-Katakana        (fkarw.gsf)    ;
  293.  
  294. %
  295. % Public-domain fonts.  These have no copyright, and are of unknown quality.
  296.  
  297. % Cyrillic fonts.  The character names are inappropriate,
  298. % and the encoding is probably not related to any known standard.
  299.  
  300. /Shareware-Cyrillic-Regular    (fcyr.gsf)    ;
  301. /Shareware-Cyrillic-Italic    (fcyri.gsf)    ;
  302.  
  303. % Aliases
  304. /Cyrillic            /Cyrillic-Regular    ;
  305. /Cyrillic-Regular        /Shareware-Cyrillic-Regular    ;
  306. /Cyrillic-Italic        /Shareware-Cyrillic-Italic    ;
  307.  
  308. %
  309. % Fonts converted from Hershey outlines.  These are constructed and
  310. % maintained manually.  These are also in the public domain.
  311. %
  312. % The suggested UniqueID's and filenames are constructed differently for
  313. % these than for the ones above, because of the strange way that the Hershey
  314. % fonts were constructed.  The scheme for these looks like:
  315. %
  316. % 42TTXY0
  317. %
  318. % TT = typeface, X = ``class'', Y = variation
  319. %
  320. % The typeface names and numbers are listed in fonts.mak.
  321. %
  322. % class:
  323. % 0 = normal            = r
  324. % 1 = simplex            = s
  325. % 2 = complex            = c
  326. % 3 = triplex            = t
  327. % 4 = duplex            = d
  328. %
  329. % variation:
  330. % 0 = normal            (omitted)
  331. % 1 = oblique            = o
  332. % 2 = italic            = i
  333. % 3 = bold            = b
  334. % 4 = bold oblique        = bo
  335. % 5 = bold italic        = bi
  336. %
  337.  
  338. % Fonts created by Thomas Wolff <wolff@inf.fu-berlin.de>, by adding
  339. % accents, accented characters, and various other non-alphabetics
  340. % to the original Hershey fonts.  These are "freeware", not to be sold.
  341.  
  342. /Hershey-Gothic-English        (hrger.pfa)    ;    % 5066533
  343. /Hershey-Gothic-German        (hrgrr.pfa)    ;
  344. /Hershey-Gothic-Italian        (hritr.pfa)    ; 
  345.  
  346. /Hershey-Plain-Duplex        (hrpld.pfa)    ;
  347. /Hershey-Plain-Duplex-Italic    (hrpldi.pfa)    ;
  348. /Hershey-Plain-Triplex        (hrplt.pfa)    ;
  349. /Hershey-Plain-Triplex-Italic    (hrplti.pfa)    ;
  350.  
  351. /Hershey-Script-Complex        (hrscc.pfa)    ;
  352. /Hershey-Script-Simplex        (hrscs.pfa)    ;    % 5066541
  353.  
  354. % Fonts created algorithmically from the above.
  355.  
  356. /Hershey-Gothic-English-Bold        (hrgerb.gsf)    ;    % 5066542
  357. /Hershey-Gothic-English-Oblique        (hrgero.gsf)    ;
  358. /Hershey-Gothic-English-SemiBold    (hrgerd.gsf)    ;
  359. /Hershey-Gothic-German-Bold        (hrgrrb.gsf)    ;
  360. /Hershey-Gothic-German-Oblique        (hrgrro.gsf)    ;
  361. /Hershey-Gothic-Italian-Bold        (hritrb.gsf)    ;
  362. /Hershey-Gothic-Italian-Oblique        (hritro.gsf)    ;
  363.  
  364. /Hershey-Plain-Duplex-Bold        (hrpldb.gsf)    ;
  365. /Hershey-Plain-Duplex-Bold-Italic    (hrpldbi.gsf)    ;
  366. /Hershey-Plain-Triplex-Bold        (hrpltb.gsf)    ;
  367. /Hershey-Plain-Triplex-Bold-Italic    (hrpltbi.gsf)    ;
  368.  
  369. /Hershey-Script-Complex-Bold        (hrsccb.gsf)    ;
  370. /Hershey-Script-Complex-Oblique        (hrscco.gsf)    ;
  371. /Hershey-Script-Simplex-Bold        (hrscsb.gsf)    ;
  372. /Hershey-Script-Simplex-Oblique        (hrscso.gsf)    ;    % 5066556
  373.  
  374. % Fonts consisting only of characters from the original Hershey
  375. % distribution.  These are Type 3 fonts.
  376.  
  377. /Hershey-Greek-Complex            (hrgkc.gsf)    ;    % 5066557
  378. /Hershey-Greek-Simplex            (hrgks.gsf)    ;
  379.  
  380. /Hershey-Plain                (hrplr.gsf)    ;
  381. /Hershey-Plain-Simplex            (hrpls.gsf)    ;    % 5066560
  382.  
  383. % Fonts created algorithmically from the above.
  384.  
  385. /Hershey-Plain-Bold            (hrplrb.gsf)    ;    % 5066561
  386. /Hershey-Plain-Bold-Oblique        (hrplrbo.gsf)    ;
  387. /Hershey-Plain-Oblique            (hrplro.gsf)    ;
  388. /Hershey-Plain-Simplex-Bold        (hrplsb.gsf)    ;
  389. /Hershey-Plain-Simplex-Bold-Oblique    (hrplsbo.gsf)    ;
  390. /Hershey-Plain-Simplex-Oblique        (hrplso.gsf)    ;    % 5066566
  391.  
  392. % This font, and only this font among the Hershey fonts, uses
  393. % the SymbolEncoding.
  394.  
  395. /Hershey-Symbol                (hrsyr.gsf)    ;    % 5066567
  396.