### gnuplot_template: gplot produces $code.gp using script gnuplot.sh ### by replacing OUTPUT, ..., by values set in gplot ### #------------------ for postscript output: #set term postscript landscape enhanced color solid "Helvetica" 14 set term postscript landscape enhanced color dashed "Helvetica" 14 set output 'OUTPUT' #------------------ for png output: #set term png #set output 'OUTPUT' #---------------------------------------------------------------------- #set tics in #set ticslevel 0.5 set zero 1e-07 #----------------- ticks: set xtics #set xtics 0,0.5,4 set ytics #set ytics 0,0.5,4 #----------------- time stamp and key: set time #set notime set key #set nokey #------------------------ ranges: #set xrange [0 : 3] #set yrange [0 : 4] ####------------------------------ labels / title: set xlabel "XLABEL" 0,0 set ylabel "YLABEL" 0,0 set title "TITLE" 0,0 plot "DATA" with lines