ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Help with \numexpr
@ 2015-05-04 15:21 Keith McKay
  2015-05-04 17:38 ` Hans Hagen
  0 siblings, 1 reply; 3+ messages in thread
From: Keith McKay @ 2015-05-04 15:21 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1257 bytes --]

Colleagues

I've written some code which should extract photos from a directory and 
a add couple of lines of description to each photo.  I'm using a 
variable (\numberText) as a counter which I was hoping to use with 
\getfromcommalist[string1, string2,...][\numberText] to add one line of 
text.  However when I try to increment the variable using \numexpr 
(\numberText=\numberText+1) \relax I get the error "You can't use 
`\numexpr' in vertical mode".

I'm not familiar with \numexpr and there does not seem to be much on the 
wiki on how to use it.  Any suggestions would be helpfull.

Here is the code

\setupexternalfigures [directory={/Path/to/the/Photos}]

\defineexternalfigure[photo][maxheight=0.4\textheight]

\define \numberText{1}

\starttext

\dostepwiserecurse{141}{146}{1}/% //\recurselevel is part of photo 
filename. See below./

{

\externalfigure[sam_0\recurselevel.jpg][photo] \par /% //\recurselevel 
is part of photo filename/

File Name /Path/to/the/Photos/sam_0\recurselevel.jpg\par

\getfromcommalist[some text,another text,even more text,much better 
text,even better text,the ultimate text][\numberText]

\commalistelement\par

\numexpr (\numberText=\numberText+1) \relax \par

\numberText \par

}

\stoptext



Thanks
Keith



[-- Attachment #1.2: Type: text/html, Size: 4235 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Help with \numexpr
  2015-05-04 15:21 Help with \numexpr Keith McKay
@ 2015-05-04 17:38 ` Hans Hagen
  2015-05-04 18:47   ` Keith McKay
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Hagen @ 2015-05-04 17:38 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 5/4/2015 5:21 PM, Keith McKay wrote:
> Colleagues
>
> I've written some code which should extract photos from a directory and
> a add couple of lines of description to each photo.  I'm using a
> variable (\numberText) as a counter which I was hoping to use with
> \getfromcommalist[string1, string2,...][\numberText] to add one line of
> text.  However when I try to increment the variable using \numexpr
> (\numberText=\numberText+1) \relax I get the error "You can't use
> `\numexpr' in vertical mode".
>
> I'm not familiar with \numexpr and there does not seem to be much on the
> wiki on how to use it.  Any suggestions would be helpfull.
>
> Here is the code
>
> \setupexternalfigures [directory={/Path/to/the/Photos}]
>
> \defineexternalfigure[photo][maxheight=0.4\textheight]
>
> \define \numberText{1}
>
> \starttext
>
> \dostepwiserecurse{141}{146}{1}/% //\recurselevel is part of photo
> filename. See below./
>
> {
>
> \externalfigure[sam_0\recurselevel.jpg][photo] \par /% //\recurselevel
> is part of photo filename/
>
> File Name /Path/to/the/Photos/sam_0\recurselevel.jpg\par
>
> \getfromcommalist[some text,another text,even more text,much better
> text,even better text,the ultimate text][\numberText]
>
> \commalistelement\par
>
> \numexpr (\numberText=\numberText+1) \relax \par
>
> \numberText \par
>
> }
>
> \stoptext

\newcount\FooCounter

\FooCounter=\numexpr\FooCounter+1\relax

or just

\advance\FooCounter\plusone



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Help with \numexpr
  2015-05-04 17:38 ` Hans Hagen
@ 2015-05-04 18:47   ` Keith McKay
  0 siblings, 0 replies; 3+ messages in thread
From: Keith McKay @ 2015-05-04 18:47 UTC (permalink / raw)
  To: ntg-context

Thanks Hans!

With your suggestion and initializing \numberText=1, it workes just the 
way I wanted.  I now have a quick and easy of cataloging my photos.

Thanks again
Keith

On 04/05/2015 18:38, Hans Hagen wrote:
> On 5/4/2015 5:21 PM, Keith McKay wrote:
>> Colleagues
>>
>> I've written some code which should extract photos from a directory and
>> a add couple of lines of description to each photo.  I'm using a
>> variable (\numberText) as a counter which I was hoping to use with
>> \getfromcommalist[string1, string2,...][\numberText] to add one line of
>> text.  However when I try to increment the variable using \numexpr
>> (\numberText=\numberText+1) \relax I get the error "You can't use
>> `\numexpr' in vertical mode".
>>
>> I'm not familiar with \numexpr and there does not seem to be much on the
>> wiki on how to use it.  Any suggestions would be helpfull.
>>
>> Here is the code
>>
>> \setupexternalfigures [directory={/Path/to/the/Photos}]
>>
>> \defineexternalfigure[photo][maxheight=0.4\textheight]
>>
>> \define \numberText{1}
>>
>> \starttext
>>
>> \dostepwiserecurse{141}{146}{1}/% //\recurselevel is part of photo
>> filename. See below./
>>
>> {
>>
>> \externalfigure[sam_0\recurselevel.jpg][photo] \par /% //\recurselevel
>> is part of photo filename/
>>
>> File Name /Path/to/the/Photos/sam_0\recurselevel.jpg\par
>>
>> \getfromcommalist[some text,another text,even more text,much better
>> text,even better text,the ultimate text][\numberText]
>>
>> \commalistelement\par
>>
>> \numexpr (\numberText=\numberText+1) \relax \par
>>
>> \numberText \par
>>
>> }
>>
>> \stoptext
>
> \newcount\FooCounter
>
> \FooCounter=\numexpr\FooCounter+1\relax
>
> or just
>
> \advance\FooCounter\plusone
>
>
>
> -----------------------------------------------------------------
>                                           Hans Hagen | PRAGMA ADE
>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
>                                              | www.pragma-pod.nl
> -----------------------------------------------------------------
> ___________________________________________________________________________________ 
>
> 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
> ___________________________________________________________________________________

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-04 18:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-04 15:21 Help with \numexpr Keith McKay
2015-05-04 17:38 ` Hans Hagen
2015-05-04 18:47   ` Keith McKay

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).