Re: [NTG-context] Testing the value of a number defined with \definenumber

2015-06-27 Thread mf
Thanks Otared, I've added this example to http://wiki.contextgarden.net/Counters Best regards, MF > Hi MF, > > You should use \rawcountervalue instead of \getnumber, as in the > following: > > \starttext > > \definenumber[numero][] > \setnumber[numero][42] > The value of {\tt numero} is \getnu

Re: [NTG-context] Testing the value of a number defined with \definenumber

2015-06-27 Thread Otared Kavian
Hi MF, You should use \rawcountervalue instead of \getnumber, as in the following: \starttext \definenumber[numero][] \setnumber[numero][42] The value of {\tt numero} is \getnumber[numero]. The value of {\tt numero} is \rawnumber[numero]. The value of {\tt numero} is \rawcountervalue[numero].

[NTG-context] Testing the value of a number defined with \definenumber

2015-06-27 Thread mf
I'd like to test the value of a number (\definenumber). \starttext \definenumber[numero][] \setnumber[numero][42] The value of {\tt numero} is \getnumber[numero]. \doifelse{\getnumber[numero]}{42}{ Ok, the test worked. }{ Why does not it work? } \stoptext ConTeXt types "Why does not it wor