|
From: Richard H. <r.h...@rl...> - 2007-12-11 09:05:07
|
Maurizio Orbisaglia wrote:
> I'm using gnuplot and I have read the tutorial for Latex.
> Can I load a picture with gnuplot and tranform it to use with Latex?
> If Yes How can I do?
> Tank's
>
>
You might want to have a look at the 'epslatex' terminal type; I use is all
the time, as follows:
I first generate my plot with gnuplot.
gnuplot> set term epslatex
gnuplot> set output 'myFigure.tex'
gnuplot> plot x
gnuplot> set output
this creates two files: myFigure.eps and myFigure.tex which is a latex file
containing annotation and includes myFigure.eps so it lines up with the
annotation.
Then, within my latex document: repot.tex:
\begin{figure}
\begin{center}
\scalebox{1.0}{\input{myFigure.tex}}
\end{center}
\end{figure}
r,
|