gs_iso_e.ps 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. % Copyright (C) 1993, 1994 Aladdin Enterprises. All rights reserved.
  2. %
  3. % This file is part of Aladdin Ghostscript.
  4. %
  5. % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
  6. % or distributor accepts any responsibility for the consequences of using it,
  7. % or for whether it serves any particular purpose or works at all, unless he
  8. % or she says so in writing. Refer to the Aladdin Ghostscript Free Public
  9. % License (the "License") for full details.
  10. %
  11. % Every copy of Aladdin Ghostscript must include a copy of the License,
  12. % normally in a plain ASCII text file named PUBLIC. The License grants you
  13. % the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14. % under certain conditions described in the License. Among other things, the
  15. % License requires that the copyright notice and this notice be preserved on
  16. % all copies.
  17. % $Id: gs_iso_e.ps $
  18. % Define the ISO Latin-1 encoding vector.
  19. % The first half is the same as the standard encoding,
  20. % except for minus instead of hyphen at code 055.
  21. /ISOLatin1Encoding
  22. StandardEncoding 0 45 getinterval aload pop
  23. /minus
  24. StandardEncoding 46 82 getinterval aload pop
  25. % NOTE: the following are missing in the Adobe documentation,
  26. % but appear in the displayed table:
  27. % macron at 0225, dieresis at 0230, cedilla at 0233, space at 0240.
  28. % This is an error in the Red Book, corrected in Adobe TN 5085.
  29. % \20x
  30. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  31. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  32. /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
  33. /dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron
  34. % \24x
  35. /space /exclamdown /cent /sterling
  36. /currency /yen /brokenbar /section
  37. /dieresis /copyright /ordfeminine /guillemotleft
  38. /logicalnot /hyphen /registered /macron
  39. /degree /plusminus /twosuperior /threesuperior
  40. /acute /mu /paragraph /periodcentered
  41. /cedilla /onesuperior /ordmasculine /guillemotright
  42. /onequarter /onehalf /threequarters /questiondown
  43. % \30x
  44. /Agrave /Aacute /Acircumflex /Atilde
  45. /Adieresis /Aring /AE /Ccedilla
  46. /Egrave /Eacute /Ecircumflex /Edieresis
  47. /Igrave /Iacute /Icircumflex /Idieresis
  48. /Eth /Ntilde /Ograve /Oacute
  49. /Ocircumflex /Otilde /Odieresis /multiply
  50. /Oslash /Ugrave /Uacute /Ucircumflex
  51. /Udieresis /Yacute /Thorn /germandbls
  52. % \34x
  53. /agrave /aacute /acircumflex /atilde
  54. /adieresis /aring /ae /ccedilla
  55. /egrave /eacute /ecircumflex /edieresis
  56. /igrave /iacute /icircumflex /idieresis
  57. /eth /ntilde /ograve /oacute
  58. /ocircumflex /otilde /odieresis /divide
  59. /oslash /ugrave /uacute /ucircumflex
  60. /udieresis /yacute /thorn /ydieresis
  61. % Make an array on large systems, a packed array on small ones.
  62. 256
  63. vmstatus exch pop exch pop
  64. 100000 ge { array astore readonly } { packedarray } ifelse
  65. def
  66. 1 ISOLatin1Encoding .registerencoding
  67. /ISOLatin1Encoding ISOLatin1Encoding .defineencoding