On 11/13/06, Renaud AUBIN wrote:
Mojca Miklavec a écrit :
Nice work! I can't read French, but the figures are very nice and content is probably interesting as well ;)
Thanks!
I didn't know that people were indeed using the module already (I started using it more regularly only recently).
dunno (but hope so because of the result...)
Now one question: how exactly did you create/include the plots? With "which version of the module"? I don't mind if some of my plots break if I slightly change the interface before officially releasing it, but I don't want other people to have problems with that. You're right. I've used the latest darcs' release (up to the "points added, some options, etc..." patch). For the inclusion, it's better to have an example in mind:
%%%% file curves.gp set terminal context input textext linewidth .3 size 1.2
textext? Did it work? On my computer it hangs after approximately 13 plots. The suggested option is to use "sometxt" now. input is the default anyway
set output "curves.tex"
set xlabel "$x$ (m)" set ylabel "$z$ (m)"
set notitle plot sin(x) with lines lw 2 notitle
set xlabel "$t$ (s)" set ylabel "a label"
set notitle plot cos(x)
%%%% file gpsample.tex: \usemodule[t-gnuplot]
\setupcolors[state=start]
\starttext \processGNUPLOTfile[mybeautifulcurves][curves]
\placefigure[here]{none}{ \startcombination[1*2] {\useMPgraphic{gpg:mybeautifulcurves:1}}{$\sin$} {\useMPgraphic{gpg:mybeautifulcurves:2}}{$\cos$} \stopcombination }
\useGNUPLOTgraphic[mybeautifulcurves][1] should work (I have to check - perhaps I forgot to prevent from loading the file once more). Looks as if \useGPgraphic shortcuts would be needed ;)
\stoptext
The output is processed using: gnuplot curves.gp texexec gpsample
With this method, the gnuplot call delivers a curves.tex file one could keep as long as the plot doesn't change... Can be usefull when you have a big document! ;)
Sure. With md5 checksums new gnuplot runs should be prevented ... (if I ever come so far to know how to implement it or if Hans kindl offers a solution ;) Even better (faster) if you have a compiled version of plots and only include PDF ;)
I'll write a paper entitled "How to get a PhD with... ConTeXt" asap (I have the summary and the ideas but time is missing these days, as always and, moreover because of my new job...). It'll mainly be a paper about integration (m-bib, gnuplot, mp, etc...)
Great!
Renaud
PS: what will you do to manage your gnuplot module for ConTeXt ? Include it into official gnuplot ? It's maybe the time to keep it "well managed", with supelec foundry for example... What your opinion ?
I just finished dummy parsing of font switches (terminals should implement set font "fontname,fontsize"), I have to implement palettes and then the first phase of the terminal will be ready (still missing are the binary images and more clever handling of palettes) The only thing I would like to sort out before officially releaing it: some new things come and will come to the gnuplot core (like transparency). I'm thinking about replacing the syntax from something like gp_put_text(x, y, gp_align_left, \sometxt{...}, ...) to something more general: gp_put_text("align=left,x=...,y=...") which basically means any number of optional parameters and consequently no problems with backward compatibility later if additional options will be added (such as transparency, ...). That should go to gnuplot CVS then. And t-gnuplot is/will be on modules.contextgarden.net (Hans might add it to distribution once it's ready/stable etc.) That one is not so clean yet. I need to implement changing the color & similar with \setupGNUPLOT[colorset=...,pointset=...,size=...,linewidth=..., ...] Mojca