How to merge PostScript files

Merging multiple PostScript files

The easiest way to merge two or more PostScript files is to simply concatenate them:
   $ cat intro.ps main.ps conclusion.ps > report.ps

To sanitise the resulting PostScript file, run
   $ fixps report.ps

Note: there is a tool psmerge, although I haven't got this to work.
|