Hello,
I prepared a plot graphics with
set term post eps color solid font "Helvetica" 10
set output "plot.eps"
set multiplot layout 2,2
set size ratio 1
plot f(x)
plot g(x)
plot h(x)
plot i(x)
unset multiplot
unset output
and then I include the plot in latex with
\usepackage{graphicx}
....
\begin{figure}
\includegraphics{plot.eps}
\end{figure}
Is this the correct way to include gnuplot graphics in latex? What is
the difference between ps files and eps files?
How would I adjust the spacing between the plots? (they always come
out on A4 which leaves too much space between columns)
Can fonts sizes be controlled individually?
When I try to rotate my eps files on inclusion, the width does funny
things. Is there something I should know about postscript files to
make the width=\textwidth latex command work?
Thank you for ideas,
Anton