Floris van Manen schrieb am 13.02.2021 um 13:10:
When I generate a serie of TEXpages, those pages end up with the same page number in the pdf.
1, 1, 1

\starttext
\def\blz{\begingroup
\startTEXpage
1 2 3
\stopTEXpage
\endgroup}
\blz
\blz
\blz
\stoptext


If I insert a \strut at the start,
I get pagenumbering 1, 2, 3, 1


\starttext
\def\blz{\begingroup
\startTEXpage
1 2 3
\stopTEXpage
\endgroup}
\strut
\blz
\blz
\blz
\stoptext


As in most software, there is a probable reason for that :-)
But how to get the pages numbered 1, 2, 3 without an empty page at the start?

You need pagestate=start:

\starttext

\dorecurse{3}
  {\startTEXpage[pagestate=start]
   Page #1
   \stopTEXpage}

\stoptext

Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to