ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Andreas Harder <aharder@uni-koblenz.de>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: Formatting numbers in LuaTeX
Date: Mon, 15 Feb 2010 23:25:44 +0100	[thread overview]
Message-ID: <65FB33D6-9CE8-4A9F-A778-B181B13A5A74@uni-koblenz.de> (raw)
In-Reply-To: <20100215193525.GA3812@gaston.couberia.bzh>


Am 15.02.2010 um 20:35 schrieb Peter Münster:

> On Sun, Feb 14 2010, Hans Hagen wrote:
> 
>>>   sqrt = math.sqrt
>>>   pi = math.pi
>>>   function my_equation(s, r)
>> 
>> beware, this creates (and possibly overloads) sqrt, pi and my_equation as 
>> gobals
> 
> Indeed...
> 
> The following hack was *not* so quick, but there is a bug somewhere
> (a digit is added at the end):
> 
> \usemodule[calcmath]
> \startluacode
> local exp_replacements = {["*"] = "$·$"}
> local res_replacements = {["sqrt"] = "math.sqrt", ["π"] = "math.pi"}
> userdata = userdata or {}
> function userdata.result_as_string(r)
> 	r = math.floor(1000 * r + 0.5) / 1000
> 	r = tostring(r)
> 	tex.write(r:gsub("%.", ","))
> end
> function userdata.filter_expression(s)
> 	for k, v in pairs(exp_replacements) do
> 		s = s:gsub(k, v)
> 	end
> 	tex.write(s)
> end
> function userdata.filter_result(s)
> 	for k, v in pairs(res_replacements) do
> 		s = s:gsub(k, v)
> 	end
> 	tex.write(s)
> end
> \stopluacode
> \def\calculate#1{%
>  \start
>    \def\Expression{\ctxlua{userdata.filter_expression("#1")}}
>    \def\Result{\ctxlua{userdata.filter_result("#1")}}
>    \calcmath{\Expression=\ctxlua{userdata.result_as_string(\Result)}}
>  \stop
> }
> \starttext
> \startlines
>  \calculate{1+2}
>  \calculate{3/2-1}
>  \calculate{3*2}
>  \calculate{sqrt(2)}
>  \calculate{2*π}
> \stoplines
> \stoptext

I've noticed that one can even use such things as \calculate{3^2},  \calculate{2^3} out of the box and it's easy to add
["e"] = "math.exp(1)", ["sin"] = "math.sin", …

But the "$·$"-construct is problematic. It do not work in display style (\let\calcmath\displaycalcmath) and without the dollar-signs the placement and the spacing are wrong.

Thank you for your elaboration.

Greetings
	Andreas




___________________________________________________________________________________
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
___________________________________________________________________________________

  parent reply	other threads:[~2010-02-15 22:25 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-02-14 10:42 Andreas Harder
2010-02-14 11:37 ` luigi scarso
2010-02-14 12:11 ` Peter Münster
2010-02-14 13:10   ` Andreas Harder
2010-02-14 21:01     ` Hans Hagen
2010-02-15 19:35       ` Peter Münster
2010-02-15 19:38         ` Hans Hagen
2010-02-15 22:25         ` Andreas Harder [this message]
2010-02-16  6:08           ` Peter Münster

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=65FB33D6-9CE8-4A9F-A778-B181B13A5A74@uni-koblenz.de \
    --to=aharder@uni-koblenz.de \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).