Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.postscript > #727
| From | gernot.hoffmann@hs-emden-leer.de |
|---|---|
| Newsgroups | comp.lang.postscript |
| Subject | Re: How to get a copyright symbol |
| Date | 2012-06-10 01:20 -0700 |
| Organization | http://groups.google.com |
| Message-ID | <34a9bc59-001e-404f-b98e-229efbf2fa9d@googlegroups.com> (permalink) |
| References | <877gvgs0fo.fsf@Compaq.site> <1hkvqq54ngzdv$.1ej49r5a0q940.dlg@40tude.net> |
Am Sonntag, 10. Juni 2012 07:12:57 UTC+2 schrieb tlvp:
> On Sat, 09 Jun 2012 22:19:23 +0200, Cecil Westerhof wrote:
>
> > For displaying a bullet I use \267. But I also want to display a
> > copyright symbol. How to do this? Also, is there a list with all the
> > symbols to use?
>
> Search for COPYRIGHT on the page <http://www.utf8-chartable.de/> , or on
> <http://www.utf8-chartable.de/unicode-utf8-table.pl?unicodeinhtml=dec> :
>
> > U+00A9 © c2 a9 © © COPYRIGHT SIGN
>
> The decimal counterpart of the copyright hex code thus being that 169, I
> guess you'd use \169 -- neet?
>
> Cheers, -- tlvp
>
> [ PS: search for [ unicode character table ] for more such lists. ]
> --
> Avant de repondre, jeter la poubelle, SVP.
This is a working PostScript example. It contains as well
a link to a doc with octal code etc.
Best regards --Gernot Hoffmann
-------
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 0 0 595 842
%%Creator: Gernot Hoffmann
%%Title: SpecialChar
%%CreationDate: June 10 /2012
% How to establish ISOLatin1Encoding
%PLRM Second Edition Example 5.6
% http://www.ascii-code.com/
/Helvetica findfont
dup length
dict
begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
/Helvetica-ISOLatin1 exch definefont pop
/mm {2.834646 mul} def % points per mm
/sx 100 mm def
/sy 100 mm def
sx sy scale
/Helvetica-ISOLatin1 findfont 0.05 scalefont setfont
0.1 0.9 moveto (a-Umlaut ä) show % without Octal code
0.1 0.8 moveto (o-Umlaut ö) show
0.1 0.7 moveto (u-Umlaut ü) show
0.1 0.6 moveto (u-Umlaut \374) show % with Octal code
0.1 0.5 moveto (sz ß) show
0.1 0.4 moveto (Copyright \251) show % with Octal code
0.1 0.3 moveto (Euro \200) show % with Octal code
% not all fonts contain the Euro-symbol
showpage
---------
Back to comp.lang.postscript | Previous | Next — Previous in thread | Next in thread | Find similar
How to get a copyright symbol Cecil Westerhof <Cecil@decebal.nl> - 2012-06-09 22:19 +0200
Re: How to get a copyright symbol Helge Blischke <h.blischke@acm.org> - 2012-06-09 22:32 +0200
Re: How to get a copyright symbol Helge Blischke <h.blischke@acm.org> - 2012-06-09 22:32 +0200
Re: How to get a copyright symbol tlvp <mPiOsUcB.EtLlLvEp@att.net> - 2012-06-10 01:12 -0400
Re: How to get a copyright symbol gernot.hoffmann@hs-emden-leer.de - 2012-06-10 01:20 -0700
Re: How to get a copyright symbol tlvp <mPiOsUcB.EtLlLvEp@att.net> - 2012-06-10 05:08 -0400
Re: How to get a copyright symbol Cecil Westerhof <Cecil@decebal.nl> - 2012-06-10 11:47 +0200
Re: How to get a copyright symbol tlvp <mPiOsUcB.EtLlLvEp@att.net> - 2012-06-11 02:20 -0400
Re: How to get a copyright symbol Cecil Westerhof <Cecil@decebal.nl> - 2012-06-11 18:52 +0200
Re: How to get a copyright symbol luser- -droog <mijoryx@yahoo.com> - 2012-06-11 10:08 -0700
Re: How to get a copyright symbol ken <ken@spamcop.net> - 2012-06-12 07:44 +0100
Re: How to get a copyright symbol luser- -droog <mijoryx@yahoo.com> - 2012-06-13 16:26 -0700
Re: How to get a copyright symbol gernot.hoffmann@hs-emden-leer.de - 2012-06-10 05:11 -0700
Re: How to get a copyright symbol Cecil Westerhof <Cecil@decebal.nl> - 2012-06-10 14:42 +0200
Re: How to get a copyright symbol Cecil Westerhof <Cecil@decebal.nl> - 2012-06-10 14:55 +0200
csiph-web