Path: utzoo!attcan!uunet!cs.utexas.edu!rice!brazos!rich From: rich@Rice.edu (Carey Richard Murphey) Newsgroups: comp.lang.postscript Subject: Re: GhostScript problem when previewing dvips output with psfont.sty Message-ID: Date: 23 Jul 90 02:02:24 GMT References: <474@keele.keele.ac.uk> Sender: root@rice.edu Reply-To: Rich@Rice.edu (Rich Murphey) Followup-To: comp.lang.postscript Organization: Department of Electrical and Computer Engineering, Rice University Lines: 46 In-reply-to: rich@Rice.edu's message of 22 Jul 90 20:25:10 GMT The file postscript prolog texps.pro (part of dvips) expects certain information to be present in each font disctionary. Two keys it expects, isFixedPitch and CharStrings, are not defined in the ghostscript 1.3beta4 fonts. The `Error: /undefined in /get' messages should go away when you define these symbols in the ghostscript font files. An example patch to tim_r.gsf is: diff -bcr orig/tim_b.gsf ./tim_b.gsf *** orig/tim_b.gsf Fri Jan 26 08:49:39 1990 --- ./tim_b.gsf Sun Jul 22 18:27:36 1990 *************** *** 33,40 **** % CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. % % ! 10 dict dup begin ! 4 dict dup /FontInfo exch def begin /Notice (Copyright \(c\) 1987 Adobe Systems, Inc., Portions Copyright 1988 Digital Equipment Corp.) def /FullName (Times Bold) def /FamilyName (Times) def --- 33,41 ---- % CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. % % ! 11 dict dup begin ! 5 dict dup /FontInfo exch def begin ! /isFixedPitch false def /Notice (Copyright \(c\) 1987 Adobe Systems, Inc., Portions Copyright 1988 Digital Equipment Corp.) def /FullName (Times Bold) def /FamilyName (Times) def *************** *** 46,51 **** --- 47,53 ---- /Encoding StandardEncoding def /FontBBox [ -5 -7 37 30 ] def /UniqueId 501 def + /CharStrings 1 dict def /BuildChar { exch begin Encoding exch get I'll be glad to mail the complete set (22K) of diffs to interested parties. Rich -- Rich@Rice.edu