首页 > 解决方案 > 使用 Antenna House 6.3 XSL 处理器,如何在行跨页时显示边框?

问题描述

使用 Antenna House 6.3 XSL 处理器,如何在行跨页时显示边框?

我的 fo 看起来像:

<fo:table xmlns:fo="http://www.w3.org/1999/XSL/Format" border-bottom-color="black"
    border-bottom-style="solid" border-bottom-width="0.5pt" border-left-color="black"
    border-left-style="solid" border-left-width="0.5pt" border-right-color="black"
    border-right-style="solid" border-right-width="0.5pt" border-top-color="black"
    border-top-style="solid" border-top-width="0.5pt" font-size="7pt" space-after="10pt"
    space-before="10pt" start-indent="inherit" width="auto">
    <fo:table-body start-indent="0pt" table-layout="auto">
        <fo:table-row keep-together="always">
            <fo:table-cell border-after-width.conditionality="retain" border-bottom-color="black"
                border-bottom-style="solid" border-bottom-width="0.5pt" border-right-color="black"
                border-right-style="solid" border-right-width="0.5pt">
                <fo:block end-indent="4pt" space-after="3pt" space-after.conditionality="retain"
                    space-before="4pt" space-before.conditionality="retain" start-indent="4pt"
                    >This</fo:block>
            </fo:table-cell>
            <fo:table-cell border-after-width.conditionality="retain" border-bottom-color="black"
                border-bottom-style="solid" border-bottom-width="0.5pt">
                <fo:block end-indent="4pt" space-after="3pt" space-after.conditionality="retain"
                    space-before="4pt" space-before.conditionality="retain" start-indent="4pt">
                    <fo:block background-color="#f0f0f0" end-indent="from-parent(end-indent)"
                        font-size="88.88888889%" keep-with-previous.within-page="always"
                        line-height="106%" linefeed-treatment="preserve" padding="6pt"
                        space-after="0pt" space-before="9pt"
                        start-indent="from-parent(start-indent)" white-space-collapse="false"
                        white-space-treatment="preserve" wrap-option="wrap"
                        line-height-shift-adjustment="disregard-shifts" font-family="Courier New"
                        >That</fo:block>
                </fo:block>
            </fo:table-cell>
        </fo:table-row>
    </fo:table-body>
</fo:table>

结果是当行跨页时没有底边或顶边。

显然,除非我添加更多细节,否则我无法发布。

当文档呈现并且表格有一行跨页中断时,中断的页面底部不会出现边框,中断的页面顶部也不会出现边框。

标签: xsl-foantenna-house

解决方案


添加border-before-width.conditionality="retain"fo:table将解决您的问题。请参阅从示例 FO 文件修改的以下示例快照。

示例 PDF 快照


推荐阅读