#!/usr/bin/env gnuplot set term png transparent size 480, 360 \ xffffff x000000 x404040 \ xff0000 x0000ff x25bc24 x8e00ba x5f3e1a set output '/dev/null' set title "JCP110 4828 fig3; Old Discretization" p 'old_fig3a_corr.data' w l ti 'beta = 0.5' rep 'old_fig3b_corr.data' w l ti 'beta = 0.2' rep 'old_fig3c_corr.data' w l ti 'beta = 0.06' rep 'old_fig3d_corr.data' w l ti 'beta = 0.02' set output 'old_fig3a.png' replot set output '/dev/null' set title "JCP110 4828 fig3; New Discretization" p 'fig3a_corr.data' w l ti 'beta = 0.5' rep 'fig3b_corr.data' w l ti 'beta = 0.2' rep 'fig3c_corr.data' w l ti 'beta = 0.06' rep 'fig3d_corr.data' w l ti 'beta = 0.02' set output 'fig3a.png' replot