I'm producing contour plots on gnuplot and outputting eps files which I then run in latex. It is four contour plots, and I need them all on the same level of my page. I am close but;
You can see the white space of the three remaining plots takes up some room, if they were removed it would surely all fit on one line (all pictures on the same level). This is an example of what my gnuplot code (for the ones that don't have a y-axis);
reset
set size 0.38, 1
set terminal epslatex
set out 'finalpolar2.tex'
set termoption dash
#set title istitle;
set font "20"
unset xlabel
unset ylabel
set format y ""
set ylabel offset 1.5;
set palette model HSV rgbformulae 7,5,15
set contour;
set view map;
unset surface;
set cntrparam levels 8;
set isosamples 50;
unset key;
set size ratio 2
set xtics 0,0.5,40
set cbtics 0,0.02,40
set cbtics offset -1;
splot 'loop_final.txt' w l lw 5 palette notitle
set out
(Some of those things are irrelevant, they are copy/pasted from an older code). I basically did "set size 0.38,1" as low as I could before the image itself started getting shortened. The problem stems in the whitespace of the y-axis that doesn't exist since I removed it. Can anyone help?