#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font "Helvetica,16" size 8.6cm, 6cm #set terminal epslatex color set output "fig_damper_ratio.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 = 'damper_ratio.dat' set ytics 0.2 nomirror format "%g" set xtics 10 nomirror set yrange [0:1] set xrange [0.01:10] set xlabel 'damper mass (g)' set ylabel 'damping effect ratio' unset label unset title unset grid set key bottom right set logscale x plot f0 using 1:3:2:4 with xyerrorbars lw 2 pt 5 ps 1.2 lc 'blue' title 'attocube DC gain', \ f0 using 1:5:2:6 with xyerrorbars lw 2 pt 7 ps 1.2 lc 'red' title 'vibration noise', #################################