#!/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 fig4; Old Discretization" p 'old_fig4a_corr.data' w l ti 'omega_c = 0.025' rep 'old_fig4b_corr.data' w l ti 'omega_c = 0.1' rep 'old_fig4c_corr.data' w l ti 'omega_c = 0.25' rep 'old_fig4d_corr.data' w l ti 'omega_c = 1.0' rep 'old_fig4e_corr.data' w l ti 'omega_c = 4.0' set output 'old_fig4a.png' replot set output '/dev/null' set title "JCP110 4828 fig4; New Discretization" p 'fig4a_corr.data' w l ti 'omega_c = 0.025' rep 'fig4b_corr.data' w l ti 'omega_c = 0.1' rep 'fig4c_corr.data' w l ti 'omega_c = 0.25' rep 'fig4d_corr.data' w l ti 'omega_c = 1.0' rep 'fig4e_corr.data' w l ti 'omega_c = 4.0' set output 'fig4a.png' replot