Newsgroups: comp.lang.postscript
Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!think.com!mintaka!bloom-picayune.mit.edu!athena.mit.edu!dcctdw
From: dcctdw@athena.mit.edu (David C Cho)
Subject: Re: Printing 'behind' a page
Message-ID: <1991Apr24.221805.26009@athena.mit.edu>
Sender: news@athena.mit.edu (News system)
Organization: Massachusetts Institute of Technology
References: <28147284.23848@ics.uci.edu> <1959@chinacat.Unicom.COM>
Date: Wed, 24 Apr 91 22:18:05 GMT
Lines: 16

If it's a single page, put
	gsave copy grestore
at the top, provided that the program doesn't do things like flood the page
with white or things like that.

if it's multi-page, then you can (probably) get away with putting the above
line at the top, and after the showpage routine.  I.e., a lot of things have

/sp {showpage} def

at which point, you'd probably want to modify it to

/sp {showpage gsave copy grestore} def

hope this helps,
dave
