如何在xsl-fo中的元素之后中断页面

时间:2014-11-05 13:34:19

标签: xml xslt xsl-fo

我将此代码用于apache xsl-fo:

<xsl:template match="depFileNom">
        <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
            <fo:layout-master-set>
                <fo:simple-page-master margin-right="1cm"
                                     margin-left="2.7cm"
                                     margin-bottom="2cm"
                                     margin-top="2cm"
                                     page-width="21.5cm"
                                     page-height="29.7cm"
                                     master-name="first">
                    <fo:region-body margin-right="1cm" margin-left="0cm"/>
                </fo:simple-page-master>
            </fo:layout-master-set>
            <fo:static-content flow-name="xsl-after">
                <fo:block text-align="center" font-size="10pt"><fo:page-number /></fo:block>
            </fo:static-content>

            <fo:block font-family="Times" font-size="15pt">
                    <fo:table>
                        <fo:table-column column-width="10000px" text-align="left"/>
                        <fo:table-body>                       
                            <fo:table-row>
                                <fo:table-cell border-style='none' vertical-align='middle'><fo:block><xsl:apply-templates select="year" /> year</fo:block></fo:table-cell>
                            </fo:table-row>
                         </fo:table-body>
                    </fo:table>
I want to break here
...

我认为需要使用:
    分页符,前
    分页,之后
但我不知道怎么做 请帮帮我

1 个答案:

答案 0 :(得分:2)

很难确定,因为您的FO不完整,但请尝试将属性page-break-after="always"添加到fo:block。如果您在fo:table之后尝试中断,并且同一个fo:block中有以下兄弟姐妹,请尝试将page-break-after="always"移至fo:table

根据您的数据,您可能还需要考虑对不同的内容使用不同的fo:page-sequence