Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!mcnc!ncsuvx!lll-winken!elroy.jpl.nasa.gov!usc!zaphod.mps.ohio-state.edu!think!yale!husc6!speed!bochner From: bochner@speed.harvard.EDU (Harry Bochner) Newsgroups: comp.lang.postscript Subject: Re: A simple font question (Bold Symbol?) Message-ID: <2564@husc6.harvard.edu> Date: 13 Apr 90 16:02:16 GMT References: <10648@portia.Stanford.EDU> <1130@chinacat.Unicom.COM> <1990Apr3.150006.9991@ux1.cso.uiuc.edu> <1990Apr3.223751.4268@intercon.com> Sender: news@husc6.harvard.edu Reply-To: bochner@speed.harvard.EDU (Harry Bochner) Distribution: usa Organization: Aiken Computation Laboratory, Harvard University Lines: 17 A couple of suggestions for faking a Bold Symbol font have gone by recently, and no one has suggested the technique that seems most obvious to me (unless I missed it :-). The easiest thing is just to stretch the font horizontally: the following code gives you a symbol font that's 30% wider than normal symbol. /bold /Symbol findfont 1.3 1 matrix scale makefont def /bold12 bold 12 scalefont def The 1.3 is arbitrary, of course: You can choose whatever factor you like. I found 1.2 to be too little, but 1.3 looks pretty good to me. I haven't tried the other approaches that have been suggested, so I can't compare results, but this approach is easy, clean, and resolution independent, so it seems worth suggesting for those who might be satisfied with the results. Harry Bochner bochner@endor.harvard.edu