【问题标题】:With Antenna House 6.3 XSL processor, how can border's be made to appear when a row breaks across pages?使用 Antenna House 6.3 XSL 处理器,如何在行跨页时显示边框?
【发布时间】:2020-05-21 20:53:50
【问题描述】:

使用 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-fo antenna-house


    【解决方案1】:

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

    【讨论】:

    • 谢谢!我也在 fo:table 中添加了border-after-width.conditionality="retain"。否则,边框只会出现在页面顶部。
    猜你喜欢
    • 2017-05-04
    • 2020-08-31
    • 2014-04-17
    • 2020-08-03
    • 2017-02-05
    • 2019-03-20
    • 1970-01-01
    • 2011-06-07
    • 1970-01-01
    相关资源
    最近更新 更多