DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15366>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15366
'initial-page-number' generates blank page
oleg@xxxxxxxxxxxxx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From oleg@xxxxxxxxxxxxx 2002-12-18 10:58 -------
That's not a bug, but specification-defined behaviour. Page numbering by default
supposed to be alternating (...odd/even/odd/even...) and default value of
force-page-count property forces last page in a page-sequence to be an even-page
if the initial-page-number of the next page-sequence is odd (exactly your case).
See http://www.w3.org/TR/xsl/slice7.html#force-page-count
To avoid it, just put force-page-count="no-force" on the first fo:page-sequence:
<fo:page-sequence master-reference="main" force-page-count="no-force">
|