#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font "Helvetica,18" size 8.6cm, 6cm #set terminal epslatex color set output "fig1.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/l0coup_sm_lg00.dat' f1 = 'data/l0coup_sm_lg10.dat' f2 = 'data/l0coup_sm_lg20.dat' f3 = 'data/l0coup_sm_lg30.dat' set ytics 0.2 nomirror format "%g" set xtics 200 nomirror set yrange [0:1] set xrange [-1300:200] set xlabel 'cavity detuning (2{/Symbol p} MHz)' set ylabel 'mode transmission' unset label unset title unset grid set key top left plot f0 using 1:2 with lines lw 3 lc 'red' title ' LG_{00}', f1 using 1:2 with lines lw 3 lc 'blue' title ' LG_{10}', f2 using 1:2 with lines lw 3 lc 'dark-green' title ' LG_{20}', f3 using 1:2 with lines lw 3 lc 'brown' title ' LG_{30}' #################################