On Fri, Nov 19, 2010 at 00:38, Florian Wobbe wrote:
>
> Thanks, I just updated the CVS version of gnuplot with your files and gave it 
> a try: It works with minimals!
>
>> [...]
>>>
>>> Feedback and patches welcome!
>
> No patches I'm afraid. But feedback goes here:
>
> 1) The label text of the following key element takes the color of the 
> preceding key symbol. Minimal example:
>
>  set terminal lua tikz fulldoc size 15cm,7cm context
>  set output 'plot.tex'
>  set xrange [ 0 : 13 ]
>  f1(x)=sqrt(x)
>  f2(x)=sqrt(x*0.8)-3
>  plot f1(x) lc rgb 'blue', f2(x)

Confirmed. I had the problems with that in my terminal as well, but I
think that it was a buglet in metapost back then; oh, good old
memories ... :) :) :) I didn't check the details about this one.

> 2) Negative axis labels are set with hyphen instead of proper minus sign, 
> which should be longer (see example above).

I'm not sure if this should really be fixed automatically or not. In
order to fix this one would have to patch gnuplot core.

I forgot the details how to do it (I can find it out), but you can
configure the layout of labels. In particular you may enclose the
number into math delimiters ($). Maybe something like
    set format y "$%.1f$"
would work (you might want to change the size of left margin then).
Doing any other kind of magic would be a bit dangerous. Keep in mind
that
    plot 'x.dat' u 1:(2*$2)
will also fail since TeX will interpret $ as math delimiter. But
changing that behaviour would have other undesirable effects.

> 3) First I thought luatex hangs but then I noticed TikZ is awfully slow when 
> drawing plots with large amounts of data points (the tikzpicture had about 
> 3000 lines). I can speed this up by reducing the size by invoking plot with:
>
>  plot "< gawk '(NR-1)%10 == 0 {print $0}' fileWithLotsOfData" using [...]
>
> I wonder if there is a smarter way to do this in gnuplot.

Using bitmap terminals. A while back I was dreaming about having
mixed-mode with one terminal creating text labels and the other one
(png for example) drawing the plot. But this needs some extra
programming effort.

You would stumble against the same problem when using PS or PDF
terminal, maybe only at a slightly bigger number of points.

What I did for my "theory of chaos" reports and the million-of-points
plots in my thesis was to create an empty plot with ConTeXt terminal,
create a borderless plot with PNG and then manually insert PNG into
the generated ConTeXt output, which you could do with TikZ output as
well. It requires more effort, but there is no other way to speed up
vector graphics. They are simply not suitable for drawing millions of
points on the same plot.

(Gnuplot also has a keyword 'every' to reduce the number of points,
but in my case I wanted to plot all of them.)

Mojca
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to