set terminal latex
set output "plot.tex"
set size 1.02, 1.05

set xlabel "File size in MB"
set ylabel "Mbytes/s"

set title 'Throughput of TC and DDIO on random-blocks layout, varying file size'

set key 900,4

set label "Note \wrb/ change" at  100,3.75 left

set data style linespoints

plot [0:1000] [0:9] \
 'data.DDIO.wrlw' title 'DDIO \wrlw/' w linesp 1 1,\
 'data.DDIO.wrn' title 'DDIO \wrn/' w linesp 1 2,\
 'data.DDIO.wrb' title 'DDIO \wrb/' w linesp 1 3,\
 'data.DDIO.wrc' title 'DDIO \wrc/' w linesp 1 4,\
 'data.TC.wrlw' title 'TC \wrlw/' w linesp 2 1,\
 'data.TC.wrn' title 'TC \wrn/' w linesp 2 2,\
 'data.TC.wrb' title 'TC \wrb/' w linesp 2 3,\
 'data.TC.wrc' title 'TC \wrc/' w linesp 2 4
