Collecting plots in a PostScript file

For compact printing a PostScript file with small-sized versions of all the plots is useful
epsmerge (Perl script) is an appropriate tool:
# concatenate file1.ps, file2.ps, and so on to 
# one single file figs.ps, having pages with 
# 3 rows with 2 plots in each row (-par preserves 
# the aspect ratio of the plots)

epsmerge -o figs.ps -x 2 -y 3 -par \
         file1.ps file2.ps file3.ps ...
Can use this technique to make a compact report of the generated PostScript files for easy printing

previousnexttable of contents