marted? 16 giugno 2009, 13:11, Richard Fateman:
> Giovanni wrote:
> ...
> >
> > I've tried again your hackform.lisp. 1/333 still print out as 0.00
>
> This is not what I get. Are you sure you downloaded the file again?
Yes, the file it's the right one (and the problem with plot2d are
gone). I've checked again, and here's what happens in more details:
format_for_numbers:"~,2F"
1/333 -> 1/333
1/333,numer -> 0.00
> > 100 -> 100 with no change
> > 1/3,numer -> 0.33
> > 1/3000,numer -> 3.33*10^-4
> >
>
> you should try format_for_numbers: "~,2E" for something like that
> last answer.
thanks for another useful hint. But, if i'm not wrong, it's messing
up the tex() command:
(%i23) 1/333,numer;
(%o23) 3.00E-3
(%i24) tex(%o23);
$$\mbox{{}3.00E-3{}}\leqno{\tt (\%o23)}$$
I should redefine Exponentiation via texput, to get what i'm expecting?
thanks again,
Giovanni