Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!bryan From: bryan@cs.utexas.edu (Bryan Bayerdorffer @ Wit's End) Newsgroups: comp.sys.amiga.applications Subject: Re: Importing Post Script files into AmigaTeX (How?) Message-ID: <277@mohawk.cs.utexas.edu> Date: 19 Feb 91 03:41:21 GMT References: <19072@cbmvax.commodore.com> Reply-To: bryan@cs.utexas.edu Organization: Spam Detection & Removal Squad, Austin, TX Lines: 30 Spam-Content: Negligible In article <19072@cbmvax.commodore.com> higgin@cbmvax.commodore.com (Paul Higginbottom - CATS) writes: =-In article drues@iastate.edu writes: =-$Can someone tell me how to include post script graphics files into =-$AmigaTeX? Have been trying to get this to work for a while with no =-$sucess :-( Example source code would be greatly appreciated. =-$ =-$Thanks, =-$mike =- =-Piece of cake... :-) =- =- \special{hscale=7 vscale=7 psfile=yourpostscriptfile} =- =-This puts the postscript file in line as a character (baseline =-aligned). One shouldn't use raw \special commands for this sort of thing. That makes the TeX source dependent on the particular .dvi driver being used. If the driver is changed or the document is to be printed on another system, this can easily fail, and all the ocurrences of the \special will have to be edited to fix it. Use a portable macro package like epsf.tex or psfig.tex, as in \epsfbox{figure.ps} or \psfig{figure=figure.ps} These are also easier to use if you want to doscaling, etc.