Hi,

There are a number of ways that a blank page can be generated. So a lot
depends on how your fo:layout-master-set is designed for that page-master.
For example, I usually print out a blank page as follows:

In my fo:layout-master-set I have:

<fo:simple-page-master master-name="blank-page-master" page-height="11in"
page-width="8.5in" margin-left="1in" margin-right="1in">
        <fo:region-body region-name="xsl-region-body" overflow="auto"/>
</fo:simple-page-master>

And I call it like follows:

<xsl:template name="output-blank-page">
        <fo:page-sequence master-reference="blank-page-master">
                <fo:flow flow-name="xsl-region-body">
                        <xsl:call-template name="blank-page"/>
                </fo:flow>
        </fo:page-sequence>
</xsl:template>

<xsl:template name="blank-page">
                <fo:table table-layout="fixed" width="100%">
                        <fo:table-column 
column-width="proportional-column-width(1)"/>
                        <fo:table-body>
                                <fo:table-row height="11in">
                                        <fo:table-cell display-align="center">  
                                
                                                <fo:block 
id="{generate-id()}-blank"
xsl:use-attribute-sets="text-10-bold-center">
                                                </fo:block>
                                        </fo:table-cell>
                                </fo:table-row>
                        </fo:table-body>
                </fo:table>
        </xsl:template>

Notice how my simple-page-master doesn't have a fo:region-after, therefore
no footer is created.

You will have to see how your blank page is being generated.



-- 
View this message in context: 
http://www.nabble.com/Page-Numbering-wooes-%28FOP-to-PDF%29-tp21220535p21229851.html
Sent from the FOP - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to