You have choices! The glyph (PostScript drawing of the character) is in the font, it just isn't encoded.
So, you can
1) use glyphshow with the glyph name:
/copyright glyphshow
2) re-encode the font, which isn't as tough as it sounds. Switch the encoding to ISOLatin1, and you'll gain the copyright symbol and accented characters.
Code:
/HelveticaLatin
<< /Helvetica findfont {} forall >>
begin
/Encoding ISOLatin1Encoding 256 array copy def currentdict
end
definefont pop
/HelveticaLatin 48 selectfont
That's all there is to it! All the accented characters will work the same way. Page E.7 in the PostScript Reference, 3rd edition, shows you all the encoded characters and their octals in the ISOLatin1 encoding vector.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.