[NTG-context] how to create many blank pages

2005-07-07 Thread Ciro Soto
I need to create a book with many blank pages (with its header footer texts). Is there any easy way to create, say, 300 blank pages one after the other, wihout using \page 300 times? I guess what I need is to know how to loop within context. thank you Ciro

Re: [NTG-context] how to create many blank pages

2005-07-07 Thread Taco Hoekwater
Ciro Soto wrote: I need to create a book with many blank pages (with its header footer texts). Is there any easy way to create, say, 300 blank pages one after the other, wihout using \page 300 times? I guess what I need is to know how to loop within context. \dorecurse{300}{\ \page}

Re: [NTG-context] how to create many blank pages

2005-07-07 Thread Stuart Jansen
On Thu, 2005-07-07 at 22:17 +0200, Taco Hoekwater wrote: Ciro Soto wrote: I need to create a book with many blank pages (with its header footer texts). Is there any easy way to create, say, 300 blank pages one after the other, wihout using \page 300 times? I guess what I need is to

Re: [NTG-context] how to create many blank pages

2005-07-07 Thread Hans Hagen
Stuart Jansen wrote: \dorecurse{300}{\ \page} Argh! Finally a question I could answer and you beat me by less than 60 seconds... Oh well, at least I can confirm that works (although I used \crlf\page instead of \ \page). or, more code: \starttext \dorecurse{300}{\page[empty]} \stoptext