Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using xsl-fo to create a pdf document with numbered pages (page x of x), but a blank page is always generated at the end of the document. Does anyone know why the following xsl generates a blank page? If I remove the fo:block last-page, the blank page does not render.

<xsl:template match="/Report">
    <fo:root font-family="Georgia,Garamond,New York,Times,Time New Roman,Serif">
        <xsl:copy-of select="$fo-layout-master-set"/>
        <fo:page-sequence master-reference="default-page" initial-page-number="1" format="1">
            <!-- Footer content -->
            <xsl:call-template name="getStaticFooter"/>

            <fo:flow><fo:block/>
            </fo:flow>
        </fo:page-sequence>

        <fo:page-sequence master-reference="default-page">
            <!-- Footer content -->
            <xsl:call-template name="getStaticFooter"/>

            <fo:flow>

                <fo:block id="last-page"/>
            </fo:flow>
        </fo:page-sequence>
    </fo:root>
</xsl:template>

<xsl:template name="getStaticFooter">
    <fo:static-content flow-name="xsl-region-after">
        <fo:table xsl:use-attribute-sets="contentTable">
            <fo:table-column number-columns-repeated="3" width="proportional-column-width(10)"/>
            <fo:table-body>
                <fo:table-row>
                    <fo:table-cell text-align="right">
                        <fo:block>
                            <fo:inline font-size="7pt" font-weight="bold">Generated by </fo:inline>
                        </fo:block>
                        <fo:block>
                            <fo:inline font-size="7pt">Page <fo:page-number/> of <fo:page-number-citation ref-id="last-page"/></fo:inline>
                        </fo:block>
                    </fo:table-cell>
                </fo:table-row>
            </fo:table-body>
        </fo:table>
    </fo:static-content>
</xsl:template>

share|improve this question
lwburk, thanks for improving the title. – tessa Mar 31 '11 at 20:51

1 Answer

up vote 2 down vote accepted

I think it's because you have 2 different fo:page-sequence's. Try moving the <fo:block id="last-page"/> to the end of the flow in the first page-sequence and removing the second fo:page-sequence.

Example:

<xsl:template match="/Report">
    <fo:root font-family="Georgia,Garamond,New York,Times,Time New Roman,Serif">
        <xsl:copy-of select="$fo-layout-master-set"/>
        <fo:page-sequence master-reference="default-page" initial-page-number="1" format="1">
            <!-- Footer content -->
            <xsl:call-template name="getStaticFooter"/>    
            <fo:flow>
              <fo:block/><!-- I'm assuming this is where the actual content will exist; there's most likely a <xsl:apply-templates/> here. -->
              <fo:block id="last-page"/>
            </fo:flow>
        </fo:page-sequence>    
    </fo:root>
</xsl:template>
share|improve this answer
You are right, thanks! – tessa Mar 31 '11 at 20:49
You are welcome! – Daniel Haley Mar 31 '11 at 22:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.