
Print a0 postscript page on multiple a4 pages
Quote:
> I would like to print out a a0 postscript page on multiple a4 pages so
> I can get an idea how it will look before I send it to print.
> Any one know how this can be done?
You can use the translate operator to move the page origin so that
different parts of it print out. Then you print the pages as many times
as required to get out all the tiles, shifting the origin for each tile.
eg
0 0 translate
<file>
Will print the bottom left corner
0 792 trasnlate
<file>
will print the next A4 tile above it
0 1584 translate
<file>
will print the third tile vertically
0 2376 translate
<file>
will print the 4th and final tile in the first column
Then
612 0 translate
<file>
will print the first of the next column etc.
For mor interesting implementations, you could write a loop and 'run'
the file.
If you do this in a BeginPage procedure then it should be proof against
initgraphics and such in the file. If you don't have at least a level 2
printer then you can't use BeginPage, and thsi solution may not work.
Ken