Re: [NTG-context] Ordered list of references (figures)

2015-09-30 Thread Henning Hraban Ramm
Hi Taco, sorry, I should have provided a minimal example. Thanks in advance! Am 2015-09-29 um 12:30 schrieb Taco Hoekwater : > Hi Hraban, > > I would be happy to help with this (i've done some registers in the past > myself), but I will need a test file to play with... > >

Re: [NTG-context] Ordered list of references (figures)

2015-09-30 Thread Taco Hoekwater
Hi Hraban, Here is what I can do at short notice. After this, I would probably just cut the final result back in after some tweaking. In any case, I am out of time right now. Good luck, Taco \newif\iffirstFIDXpage \def\textcommand#1{#1\global\firstFIDXpagetrue}

[NTG-context] escaping quotes in \ctxlua

2015-09-30 Thread Pablo Rodriguez
Dear list, I have the following sample: \starttext \startluacode tex.print(os.getenv("USER") \stopluacode \ctxlua{tex.print(os.getenv("USER")} \stoptext How can I escape the quotes in the \ctxlua command? Many thanks for your help, Pablo -- http://www.ousia.tk

Re: [NTG-context] escaping quotes in \ctxlua

2015-09-30 Thread Wolfgang Schuster
Pablo Rodriguez 30. September 2015 um 17:07 Dear list, I have the following sample: \starttext \startluacode tex.print(os.getenv("USER") \stopluacode \ctxlua{tex.print(os.getenv("USER")} \stoptext How can I escape the quotes in the \ctxlua command? You have to add a

Re: [NTG-context] escaping quotes in \ctxlua

2015-09-30 Thread Tomas Hala
Hello Pablo, print commands are not balanced, second right parenthesis is missing. Then it will work. Tomas Wed, Sep 30, 2015 ve 05:07:49PM +0200 Pablo Rodriguez napsal(a): # Dear list, # # I have the following sample: # # \starttext # \startluacode # tex.print(os.getenv("USER") #

Re: [NTG-context] escaping quotes in \ctxlua

2015-09-30 Thread Pablo Rodriguez
On 09/30/2015 05:20 PM, Wolfgang Schuster wrote: >> Pablo Rodriguez 30. September 2015 um 17:07 >> Dear list, >> >> I have the following sample: >> >> \starttext >> \startluacode >> tex.print(os.getenv("USER") >> \stopluacode >> >> \ctxlua{tex.print(os.getenv("USER")} >> \stoptext >> >> How can I