0

25 列の fo:table を作成しています。PDF に変換するとき、ページのサイズ (A4) に対して表が広すぎる場合、別のページに書き込みたい 5 列ごとなど、列ごとに表を分割するにはどうすればよいですか?

ありがとう

4

2 に答える 2

0

私の解決策は、2 つの独立したテーブルを作成することでした。次に、モード関数を使用した 2 番目のブロックの最初のブロックを区別するために、xsl テンプレートの 2 つのブロックを作成しました。このような:

Table
....
<xsl:apply-templates select="content[@teste='1']" mode="first" />
....
<xsl:apply-templates select="content[@teste='1']" mode="second" />
....
XSL Templates block
....
<xsl:template match="content[@teste='1']" mode="first">
....
<xsl:template match="content[@teste='1']" mode="second">
....
于 2013-04-21T15:18:32.217 に答える