atom feed28 messages in org.oasis-open.lists.docbook-appsRe: DOCBOOK-APPS: jadetex 3.9
FromSent OnAttachments
Jan ScheffczykJul 2, 2001 12:07 am 
Ian CastleJul 2, 2001 6:44 am 
Richard SharpeJul 2, 2001 8:54 am 
Richard SharpeJul 2, 2001 7:13 pm 
Sebastian RahtzJul 3, 2001 4:15 am 
Richard SharpeJul 3, 2001 4:54 am 
Bob McIlvrideJul 4, 2001 8:55 am 
Norman WalshJul 5, 2001 10:53 am 
Norman WalshJul 5, 2001 10:53 am 
Bob McIlvrideJul 6, 2001 8:36 am 
Ian CastleJul 9, 2001 6:26 am 
Ian CastleJul 9, 2001 6:31 am 
Richard SharpeJul 9, 2001 6:49 am 
Ian CastleJul 9, 2001 10:14 am 
Sebastian RahtzJul 11, 2001 7:00 pm 
Joe CooperJul 11, 2001 11:03 pm 
Kevin DunnJul 12, 2001 2:14 pm 
Ian CastleJul 12, 2001 11:50 pm 
Joe CooperJul 13, 2001 12:22 am 
Richard SharpeJul 13, 2001 12:38 am 
Juan R. MigoyaJul 13, 2001 1:16 am 
Kevin DunnJul 13, 2001 1:46 am 
Joe CooperJul 13, 2001 2:01 am 
Ian CastleJul 13, 2001 3:11 am 
Juan R. MigoyaJul 13, 2001 3:50 am 
Sebastian RahtzJul 13, 2001 3:50 am 
Richard SharpeJul 13, 2001 5:49 am 
Juan R. MigoyaJul 14, 2001 3:44 am 
Subject:Re: DOCBOOK-APPS: jadetex 3.9
From:Ian Castle (bb+l@LOOKSystems.co.uk)
Date:Jul 13, 2001 3:11:23 am
List:org.oasis-open.lists.docbook-apps

Kevin Dunn wrote:

3. I wonder whether there is such a thing as \def\TwoPageRestartOnRight{1} or something like that, which would always force page 1 to start on the right, but would not force each chapter to do so. Is there such a thing?

No, there is no TwoPageRestartOnRight.... I don't think you really need it.

I've patched my openjade to support an extension for jadetex's TwoPageStartOnRight called two-page-start-on-right?. I've played around with getting the stylesheet to emit this (either true of false) every so often to get the behaviour you describe (this was before I had a better fix to the DSSSL to stop the title pages from starting on odd pages - i.e. with the recto, blank page, verso, blank page...) so it does seem to work OK.

You could simiulate the effect of this by editing the .tex output from jade - look for where it calls \SpS and add the value in there... e.g.

Before:

...\SpS% {\def\PageNColumns% {1}\def\PageNumberFormat% {i}\def\InputWhitespaceTreatment% ...

After:

...\SpS% {\def\PageNColumns% {1}\def\PageNumberFormat% {i}\def\TwoPageStartOnRight% {0}\def\InputWhitespaceTreatment% ...

So either 0 (as above) or 1 as you see fit.

Of course, with the {open}jade patched for the page-two-side and two-page-start-on-right extensions then you would simply;-) have to call

two-page-start-on-right?: #t

or two-page-start-on-right?: #f

in the stylesheets as you saw fit.