;Set plot to Postscript: set_plot, 'ps' ;Set the filename: device, filename='/afs/slac/u/ki/lances/idl/test_plot.ps' ;make plotting area hold 2 columns and 3 rows of plots !p.multi=[0,2,3] ;create simple dataset a=findgen(10) ;make 6 different plots plot,a plot,sin(a) plot,cos(a)d plot,tan(a) plot,tanh(a) plot,sinh(a) ;close the file: device,/close ;return plotting to windwos ;set_plot, 'win' ;Reset plotting to 1 plot per page !p.multi=0 end