[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
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


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}

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


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 know how to loop within context.
 
 \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).

-- 
Stuart Jansen [EMAIL PROTECTED]
Guru Labs, L.C.


signature.asc
Description: This is a digitally signed message part
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


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




-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context