ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Compiling error \subpagenumber
@ 2008-03-19  9:05 Willi Egger
  2008-03-19 10:13 ` Willi Egger
  0 siblings, 1 reply; 4+ messages in thread
From: Willi Egger @ 2008-03-19  9:05 UTC (permalink / raw)
  To: NTG-Context ConTeXt users

Hi,

I got a series of files, which are organized in a project-structure.  
With the following versions I get the desired output:

ConTeXt  ver: 2007.12.18 19:11 MKII  fmt: 2008.3.19 int: english/english
ConTeXt  ver: 2008.01.11 12:09 MKIV  fmt: 2008.1.11 int: english/english

Since the update lately the project does not compile anymore:

ConTeXt  ver: 2008.03.11 23:55 MKII  fmt: 2008.3.15  int: english/ 
english

Undefined controlsequence

<write> ...ubpage }{\newnofsubpages }{\oldsubpage}
<inserted text>
                 }\endwrite
\actualshipout ... \box \postponedcontent \box 0}}
\else \message {[\ifarrang...
\myshipout ... \fi {\thisisrealpage \realfolio #1}
\gotonextrealpage \aftersh...
\dofinaloutput ...agebody #1#2\setpagecounters }}}
\fi \the \everyaftershipou...
\finaloutput ...EAEAEA \dofinaloutput \fi \fi #1#2
\resetselectiepagina \incr...

...

l.84 \stopfrontmatter


Hans, could you have a look into this?


Kind regards

Willi




___________________________________________________________________________________
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Compiling error \subpagenumber
  2008-03-19  9:05 Compiling error \subpagenumber Willi Egger
@ 2008-03-19 10:13 ` Willi Egger
  2008-03-20 19:46   ` Wolfgang Schuster
  0 siblings, 1 reply; 4+ messages in thread
From: Willi Egger @ 2008-03-19 10:13 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hio,

in addition to this mail I can inform you, that the project compiles  
without problem with ConTeXt  ver: 2008.03.11 23:55 MKIV  fmt:  
2008.3.19  int: english/english

Willi
On Mar 19, 2008, at 10:05 AM, Willi Egger wrote:

> Hi,
>
> I got a series of files, which are organized in a project-structure.
> With the following versions I get the desired output:
>
> ConTeXt  ver: 2007.12.18 19:11 MKII  fmt: 2008.3.19 int: english/ 
> english
> ConTeXt  ver: 2008.01.11 12:09 MKIV  fmt: 2008.1.11 int: english/ 
> english
>
> Since the update lately the project does not compile anymore:
>
> ConTeXt  ver: 2008.03.11 23:55 MKII  fmt: 2008.3.15  int: english/
> english
>
> Undefined controlsequence
>
> <write> ...ubpage }{\newnofsubpages }{\oldsubpage}
> <inserted text>
>                  }\endwrite
> \actualshipout ... \box \postponedcontent \box 0}}
> \else \message {[\ifarrang...
> \myshipout ... \fi {\thisisrealpage \realfolio #1}
> \gotonextrealpage \aftersh...
> \dofinaloutput ...agebody #1#2\setpagecounters }}}
> \fi \the \everyaftershipou...
> \finaloutput ...EAEAEA \dofinaloutput \fi \fi #1#2
> \resetselectiepagina \incr...
>
> ...
>
> l.84 \stopfrontmatter
>
>
> Hans, could you have a look into this?
>
>
> Kind regards
>
> Willi
>
>
>
>
> ______________________________________________________________________ 
> _____________
> 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://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ______________________________________________________________________ 
> _____________

___________________________________________________________________________________
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Compiling error \subpagenumber
  2008-03-19 10:13 ` Willi Egger
@ 2008-03-20 19:46   ` Wolfgang Schuster
  2008-03-21 13:00     ` Willi Egger
  0 siblings, 1 reply; 4+ messages in thread
From: Wolfgang Schuster @ 2008-03-20 19:46 UTC (permalink / raw)
  To: ntg-context

On Wed, 19 Mar 2008 11:13:12 +0100
Willi Egger <w.egger@boede.nl> wrote:

> Hio,
> 
> in addition to this mail I can inform you, that the project compiles  
> without problem with ConTeXt  ver: 2008.03.11 23:55 MKIV  fmt:  
> 2008.3.19  int: english/english

Hi Willi,

I run in this bug myself two days ago and it did only occur with MkII.

The problem is the definition for \pldsubpage in \gotonextpage, the
macro is defined with \edef bit it should be done with \xdef (look at
the last line with code below.

\def\gotonextsubpage % overlapt behoorlijk met realpage macro
  {\global\let\checksubpages\relax
   \ifresettingsubpagenumber
     \resetnumber[\s!subpage]%
     \global\resettingsubpagenumberfalse
   \fi
   \ifsubpaging
     %\edef\oldsubpage{\the\subpageno}%
     \xdef\oldsubpage{\the\subpageno}%
   ...
   }

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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Compiling error \subpagenumber
  2008-03-20 19:46   ` Wolfgang Schuster
@ 2008-03-21 13:00     ` Willi Egger
  0 siblings, 0 replies; 4+ messages in thread
From: Willi Egger @ 2008-03-21 13:00 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hello Wolfgang,

thanks a lot for your solution of the subpageno-error!

Kind regards

Willi
On Mar 20, 2008, at 8:46 PM, Wolfgang Schuster wrote:
> subpageno

BOEDE
Book and Electronic Document Engineering
Willi Egger
w.egger@boede.nl
KvK 17138708



___________________________________________________________________________________
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-03-21 13:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-19  9:05 Compiling error \subpagenumber Willi Egger
2008-03-19 10:13 ` Willi Egger
2008-03-20 19:46   ` Wolfgang Schuster
2008-03-21 13:00     ` Willi Egger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).