Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!cornell!uw-beaver!uw-june!uw-entropy!brothers!charlie From: charlie@brothers.stat.washington.edu (Charlie Geyer) Newsgroups: comp.lang.postscript Subject: Re: \special problem with LaTeX, dvi2ps, postscript Message-ID: <1268@uw-entropy.ms.washington.edu> Date: 18 Feb 89 02:42:29 GMT References: <3709@cloud9.Stratus.COM> Sender: news@uw-entropy.ms.washington.edu Reply-To: charlie@mica.stat.washington.edu (Charlie Geyer) Distribution: usa Organization: UW Statistics, Seattle Lines: 24 Summary: Expires: Sender: Followup-To: In article <3709@cloud9.Stratus.COM> rmwise@cloud9.Stratus.COM (Robert Wise) writes: > I have the latest TeX/LaTeX distribution installed on my > Sun. When I use the \special command to include postscript > files (in this case psplot output) I always get a page eject > before and after the included postscript. I think the problem > is in the tex.ps header. In any case, it seems to be a dvi2ps > problem. Anybody else run into this problem and have a fix? The tex.ps header does not completely disable page ejects making it completely impossible to ever to do a page eject in an included file. It's not clear that this is a "problem" that should be "fixed." Your problem is solved by you taking the "showpages" out of the file you want to include. If "woof.plot" is the plot in plot(5) format you want to include psplot woof.plot | sed "s/showpage//g" > woof.ps gives you a file to include that has no page ejects in it. Hope this helps.