I want to save some plots that I obtain from different gnuplot programs, ran at different time to go on to the same postscript. At present, if I set the terminal to postscript and give an output file like this:
set terminal postscript eps size 19.2,10.80 enhanced color \
font 'Helvetica,20' linewidth 2
set output 'temp.eps'
gnuplot overrrides the existing file "temp.eps" and plots the new plot in a new file. How can I make it to append another page to the existing postscript?
set output "| mytool old.ps -". - Christoph