セル内に大量のテキストを含む表を使用すると、スタイリングの問題に直面します。残念ながら、テキストが改ページで区切られていることがあります。次の図でわかるように、行 3 の段落1は改ページで分割されています。
必要なのは、行 3、段落 1 、行 1が段落の残りの部分と一緒に次のページに配置されることです。
「孤児」や「未亡人」などの属性を使用してみましたが、テーブル セル内では効果がないようです。また、 keep-together属性のブロックを使用してみましたが、段落が 1 ページより大きくなり、コンテンツが途切れる可能性があります。他に考えられる唯一の方法は、行の最初の数段落で使用する fo:blocks でkeep-with-nextを使用することです。しかし、これはずさんで複雑で、経験則に近いものに見えます。
http://www.utilities-online.info/foprender/を使用してテストできる「最小限の」例をまとめました。解決策を教えていただければ幸いです。「孤児」と「未亡人」がここで機能しないように見える理由も教えてください。
前もって感謝します!
XML:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<item>
<heading>head1</heading>
<description>
<p>row1 paragraph1 line1
row1 paragraph1 line2
row1 paragraph1 line3
row1 paragraph1 line4
row1 paragraph1 line5</p>
<p>row1 paragraph2 line1
row1 paragraph2 line2
row1 paragraph2 line3
row1 paragraph2 line4</p>
</description>
</item>
<item>
<heading>head1</heading>
<description>
<p>row2 paragraph1 line1
row2 paragraph1 line2
row2 paragraph1 line3
row2 paragraph1 line4
row2 paragraph1 line5</p>
<p>row2 paragraph2 line1
row2 paragraph2 line2
row2 paragraph2 line3
row2 paragraph2 line4
row2 paragraph2 line5
row2 paragraph2 line6
row2 paragraph2 line7</p>
</description>
</item>
<item>
<heading>head1</heading>
<description>
<p>row3 paragraph1 line1
row3 paragraph1 line2
row3 paragraph1 line3
row3 paragraph1 line4
row3 paragraph1 line5</p>
<p>row3 paragraph2 line1
row3 paragraph2 line2
row3 paragraph2 line3
row3 paragraph2 line4</p>
</description>
</item>
</root>
XSL
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
<xsl:output encoding="UTF-8" indent="yes" method="xml" standalone="no" omit-xml-declaration="no"/>
<xsl:template match="//root">
<fo:root language="DE">
<fo:layout-master-set>
<fo:simple-page-master master-name="A4-landscape" page-height="21cm" page-width="29.7cm" margin-top="5mm" margin-bottom="5mm" margin-left="5mm" margin-right="5mm">
<fo:region-body margin-top="25mm" margin-bottom="20mm"/>
<fo:region-before region-name="xsl-region-before" extent="25mm" display-align="before" precedence="true"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="A4-landscape">
<fo:flow reference-orientation="0" border-collapse="collapse" flow-name="xsl-region-body">
<fo:table>
<fo:table-column column-width="80%"/>
<fo:table-body>
<xsl:apply-templates select="item"/>
</fo:table-body>
</fo:table>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
<xsl:template match="item">
<fo:table-row>
<fo:table-cell border="solid">
<fo:block>
<xsl:value-of select="heading"/>
</fo:block>
<fo:block linefeed-treatment="preserve" orphans="4" widows="4">
<xsl:apply-templates select="description"/>
</fo:block>
</fo:table-cell>
</fo:table-row>
</xsl:template>
<xsl:template match="//description/p">
<fo:inline><xsl:value-of select="text()"/></fo:inline>
</xsl:template>
</xsl:stylesheet>
編集xml 入力に p-tag を追加しました。間違ったバージョンの xml を投稿しました。