Blank page without header

I try to begin a new page-sequence on odd page.
I think it's a really classical problem, but I don't find the solution.
I introduce an empty block with the break-before attribute
------<fo:flow flow-name="xsl-region-body">
---------<fo:block break-before="odd-page"></fo:block>
and in the page-sequence-master I introduce the blank concept
----------------------
				<fo:page-sequence-master master-name="page-normale">
					<fo:repeatable-page-master-alternatives>
						<fo:conditional-page-master-reference
							master-reference="page-blanche"
							blank-or-not-blank="blank"/>
						<fo:conditional-page-master-reference
							master-reference="page-paire"
							blank-or-not-blank="not-blank"
							odd-or-even="odd"/>
						<fo:conditional-page-master-reference
							master-reference="page-impaire"
							blank-or-not-blank="not-blank"
							odd-or-even="even"/>
					</fo:repeatable-page-master-alternatives>
				</fo:page-sequence-master>
--------------------
the odd and even page have static-content to define header.
A the end in the result (XEP engine) I have a blank page, but with the odd header.

I read and reread the specification to find why, but I don't understand.
Does anyone has an example?
Thanks
Marc

Received on Tuesday, 13 January 2004 12:02:55 UTC