|
From: Maurizio O. <orb...@ya...> - 2007-12-10 16:13:08
|
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
---------------------------------
---------------------------------
L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail |
|
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,
|
|
From: M. O. <orb...@ya...> - 2007-12-11 18:01:54
|
I have to load a picture with gnuplot and not to generate it.
>Maurizio Orbisaglia
Richard Henwood wrote:
>
> 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,
>
>
> -------------------------------------------------------------------------
> SF.Net email is sponsored by:
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> _______________________________________________
> Gnuplot-info mailing list
> Gnu...@li...
> https://lists.sourceforge.net/lists/listinfo/gnuplot-info
>
>
--
View this message in context: http://www.nabble.com/picture-tp14256105p14279626.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|
|
From: Richard H. <r.h...@rl...> - 2007-12-12 15:37:28
|
M. O. wrote: > > I have to load a picture with gnuplot and not to generate it. > >>> 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 >>> <snip previous correspondence> Why do you have to 'load a picture with gnuplot'? Generally, gunplot is not a suitable tool for transforming a picture to use with latex. r, |
|
From: M. O. <orb...@ya...> - 2007-12-14 11:09:08
|
Becouse I have to transform a graph of Matalab in a pictur for latex (EPS). r, Richard Henwood wrote: > > M. O. wrote: > >> >> I have to load a picture with gnuplot and not to generate it. >> >>>> 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 >>>> > > <snip previous correspondence> > > Why do you have to 'load a picture with gnuplot'? > Generally, gunplot is not a suitable tool for transforming a picture to > use > with latex. > > r, > > > ------------------------------------------------------------------------- > SF.Net email is sponsored by: > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > Gnuplot-info mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > > -- View this message in context: http://www.nabble.com/picture-tp14256105p14333910.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |
|
From: Richard H. <r.h...@rl...> - 2007-12-17 14:35:51
|
M. O. wrote: > > Becouse I have to transform a graph of Matalab in a pictur for latex > (EPS). > r, >>> >>> I have to load a picture with gnuplot and not to generate it. >>> >>>>> 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 >>>>> >> >> <snip previous correspondence> >> >> Why do you have to 'load a picture with gnuplot'? >> Generally, gunplot is not a suitable tool for transforming a picture to >> use >> with latex. >> I have never heard of Matalab; I also don't have much experience with Matlab; so I don't think I be of much assistance. However, ImageMatick http://www.imagemagick.org/ will convert from a range of formats to EPS, suitable for latex. r, |