#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font "Helvetica,18" size 8.6cm, 6cm #set terminal epslatex color set output "fig5_fwhm.eps" ################################# ####### ####GENERAL SETTINGS#### set border linewidth 1.5 set samples 5000 set multiplot #set bar 2 unset bar unset key #set style fill solid 0.3 noborder ########################### ##### ##### unset key #unset xtics #unset xlabel #unset ytics #unset ylabel unset key set border 15 #set tmargin at screen 0.53 #set bmargin at screen 0.18 set lmargin at screen 0.15 #set rmargin at screen 0.95 f0 = 'data/dcc_fwhm_lg00.dat' f1 = 'data/dcc_fwhm_lg10.dat' f2 = 'data/dcc_fwhm_lg20.dat' set ytics 50 nomirror format "%g" set xtics 1 nomirror set yrange [0:400] set xrange [-1.0:3.4] set xlabel 'critical distance ({/Symbol m}m)' set ylabel 'linewidth (2{/Symbol p} MHz)' unset label unset title unset grid set key top right plot f0 using 1:2:3 with yerrorbars lw 3 pt 7 lc 'red' title 'LG_{00}', f1 using 1:2:3 with yerrorbars lw 3 pt 7 lc 'blue' title 'LG_{10}', f2 using 1:2:3 with yerrorbars lw 3 pt 7 lc 'dark-green' title 'LG_{20}' #################################