我有一張表格的XSL-FO樣式表。表格中的分頁符XSL-FO
<fo:page-sequence master-reference="defaultPage">
<fo:flow flow-name="xsl-region-body">
<fo:table table-layout="fixed" width="100%">
<fo:table-column column-width="9pt"/>
<fo:table-column column-width="30pt"/>
<fo:table-column column-width="150pt"/>
<fo:table-header>
<fo:table-row>
<fo:table-cell>
<fo:block><xsl:text>Column 1</xsl:text></fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block><xsl:text>Column 2</xsl:text></fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block><xsl:text>Column 3</xsl:text></fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-header>
<fo:table-body>
<fo:table-row>
<xsl:apply-templates select="rbrOcjena"/>
<xsl:apply-templates select="sifPred"/>
<xsl:apply-templates select="nazPred"/>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:flow>
</fo:page-sequence>
該表可以有很多行,所以我想在生成PDF時提及當前結尾時在新頁面上將其分開。另外,如果可能的話,我想在新頁面上重複表格標題。我應該在表格標籤中添加哪些屬性才能使它成爲現實?
謝謝!
之前提出一個新的問題,請接受[回答你的最後一個問題(HTTP:// stackoverflow.com/a/24938287/1987598)。謝謝! – 2014-08-28 10:09:55