macro setup * Reset all plotting options to default values set *; opt *; title; title ! U * Set ZFL option to enable screen capture at the end opt zfl * Reset ysiz so the plot is rectangular (default is 20) set ysiz 18 * ... set font, font size, and colour for axis values set vfon -66 set vsiz 0.5 set xcol 1 set ycol 1 * ... increase line width for axis box, and x,y tick marks set bwid 3 set xwid 3 set ywid 3 * ... if needed add space between axes and axis values (default 0.4) * ... --> logarithmic scales (especially vertical) require extra space set xval 0.4 set yval 0.4 * ... add space to left and bottom margins, to accomodate large axis labels set xmgl 3 set ymgl 3 * ... set axis divisions: n1 + 100*n2 + 10000*n3 (default = 10510) * ... where n1 = # primary axis divisions, n2 = # secondary, etc * ... Note: negative number --> force exact number of divisions set ndvy 504 set ndvx 210 * ... set linear/log options opt linx opt liny * ... establish null frame for plot opt nbox * ... set font, font size, and colour for labels set lfon -66 set asiz 0.6 set txci 1 * ... space the labels away from the axes * ... --> logarithmic scales require a little extra space set xlab 2.0 set ylab 1.7 * Set font, font size, and alignment for ITX text set txfp -66 set chhe 0.5 set txal 13 set mscf 2.0 * ... increase thickness of error bars and outline of open symbols set hwid 4 set lwid 6 return *------------------------------------------------------------------------------ macro print filebase=tmp * CAPTURE THE PICTURE TO POSTSCRIPT FILE AND MAKE EPS VERSION pi/pri [filebase].ps mess Wrote file [filebase].ps * Generate eps file using ps2epsi utility. * NOTE: Using PAW to make eps files via pi/pri nucpi_test.eps (or any * other method) does NOT produce a proper bounding box! DO NOT USE. shell ps2epsi [filebase].ps [filebase].eps mess Wrote file [filebase].eps return