Re: [NTG-context] generate multiple files from one source

2017-02-19 Thread Pablo Rodriguez
On 02/19/2017 08:02 PM, Jaroslav Hajtmar wrote: > Hello Pablo, > I am using a new calling of ConTeXt ie. compile new source code from > the main source code. It is possible due \executesystemcommand macro. > Necessary parameters You can pass to new compiling source. For example: > > \executesystem

Re: [NTG-context] generate multiple files from one source

2017-02-19 Thread Pablo Rodriguez
On 02/19/2017 11:41 AM, Hans Hagen wrote: > On 2/18/2017 11:27 PM, Pablo Rodriguez wrote: >> [...] >> Of course, my real documents are more complex. What I need is a file >> breaking command. Appending -1, -2, -3... -n to the PDF file name would >> be fine for me. >> >> How could I achieve this in

Re: [NTG-context] generate multiple files from one source

2017-02-19 Thread Jaroslav Hajtmar
Hello Pablo, I am using a new calling of ConTeXt ie. compile new source code from the main source code. It is possible due \executesystemcommand macro. Necessary parameters You can pass to new compiling source. For example: \executesystemcommand{context --result invoice-\cA.pdf --arguments = "cA

Re: [NTG-context] generate multiple files from one source

2017-02-19 Thread Hans Hagen
On 2/18/2017 11:27 PM, Pablo Rodriguez wrote: Dear list, I have the following sample: \setuppapersize[A8, landscape] \starttext \dorecurse{10}{ \startpagemakeup[align=center] This is invoice number \recurselevel. Customer name from CSV file. Other data from the sam

Re: [NTG-context] generate multiple files from one source

2017-02-18 Thread Henning Hraban Ramm
Am 2017-02-18 um 23:27 schrieb Pablo Rodriguez : > Dear list, > > I have the following sample: > >\setuppapersize[A8, landscape] >\starttext >\dorecurse{10}{ >\startpagemakeup[align=center] >This is invoice number \recurselevel. > >Customer name from CSV file. > >Ot

[NTG-context] generate multiple files from one source

2017-02-18 Thread Pablo Rodriguez
Dear list, I have the following sample: \setuppapersize[A8, landscape] \starttext \dorecurse{10}{ \startpagemakeup[align=center] This is invoice number \recurselevel. Customer name from CSV file. Other data from the same CSV file. \stoppagemakeup} \stoptext