[Home] [By Thread] [By Date] [Recent Entries]
At 2009-06-19 13:10 +0000, Florent Georges wrote:
I've just found a weird behaviour with the following document: Actually, it is expected. If I remove @initial-page-number, the result is as expected (except that my real problem does rely on this attribute to have correct number pages, of course.) You asked for a second page sequence starting at page number 1. Odd page numbers are typically on the opposite side of even numbered pages, so the processor adds a blank page to the first page sequence. If what you want is two consecutive pages numbered 1, then stop the forcing of the blank page in the first page sequence, as below. I hope this helps. . . . . . . . . . Ken <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master
master-name="m" margin="7.5mm"
page-height="210mm" page-width="297mm">
<fo:region-body/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="m" force-page-count="no-force">
<fo:flow flow-name="xsl-region-body">
<fo:block>block</fo:block>
</fo:flow>
</fo:page-sequence>
<fo:page-sequence master-reference="m"
initial-page-number="1">
<fo:flow flow-name="xsl-region-body">
<fo:block>block</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>-- Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Training tools: Comprehensive interactive XSLT/XPath 1.0/2.0 video Video lesson: http://www.youtube.com/watch?v=PrNjJCh7Ppg&fmt=18 Video overview: http://www.youtube.com/watch?v=VTiodiij6gE&fmt=18 G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Male Cancer Awareness Nov'07 http://www.CraneSoftwrights.com/s/bc Legal business disclaimers: http://www.CraneSoftwrights.com/legal
|

Cart



