Adjacent, or side-by-side, graphs from Gnuplot - latex terminal
Fo开发者_运维问答llowing on from the Gnuplot tutorial: how can I place graphs, output using the latex terminal, side-by-side; or in a 2x2 grid? I have 4 default-sized graphs at the moment. Will I also have to resize each one by hand?
\begin{figure}
\begin{center}
\input{plot}
\end{center}
\end{figure}
Ok if you are using multiplot take a look at this. A little example is also shown below:
set key off
set multiplot layout 2,2
plot x**2
plot -x**2
plot x**3
plot -x**3
unset multiplot
Hope that helped.
精彩评论