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
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}
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
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 -----------------------------------------------------------------
thank you all...
ciro
On 7/7/05, 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.comhttp://www.pragma-ade.com | www.pragma-pod.nl http://www.pragma-pod.nl -----------------------------------------------------------------
_______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
-- ======================================= "All problems are at the interface. Each one of them has a solution." from: "The Guitar Maker: An Exploration of Wisdom, Design and Love." A novel by C. A. Soto Aguirre. Pub. Date: October 2005.
participants (4)
-
Ciro Soto
-
Hans Hagen
-
Stuart Jansen
-
Taco Hoekwater