XSLT - XSL:FO PDF表 - 行到高 - 树中的Unicode块元素

时间:2016-06-10 11:31:35

标签: xslt unicode xsd xsl-fo

我正在尝试为Parts-List构建一个Tree,就像那样:

The Tree

但是当我尝试适合垂直线(Courier New,HTML decimal:&#9474)时,它完全不适合下一个块元素。我仔细检查了所有边框,边距和填充。

我还认为,黑色元素本身可能不会填充符号,空格,但事实并非如此,正如您在图片中看到的那样。右边条纹的元素与垂直线的大小相同。并且具有右边的线的元素完全适合,垂直线不是:

enter image description here

这里是嵌套表格的代码:

<fo:table-body>
[...]
<fo:table-row font-size="8pt" padding-top="0pt"
    margin-bottom="-3pt" margin-top="0pt" vertical-align="center"
    font-family="MyCourierNew">
    <fo:table-cell border-left="{$Standardrand}" font-size="11pt" font-family="MyCourierNew">
        <fo:block>
            <xsl:if test="$ben2 != ''">
                <xsl:choose>
                    <xsl:when test="$naechste  &gt; $aktuelle">
                        │
                    </xsl:when>
                    <xsl:when test="$naechste = $aktuelle and $aktuelle &gt; 1">
                        │
                    </xsl:when>
                </xsl:choose>
            </xsl:if>
        </fo:block>
    </fo:table-cell>
</fo:table-row>

我真的无法找到问题所在。

1 个答案:

答案 0 :(得分:0)

我不确定你正在生成什么XSL-FO。但是line-height.conditionality =“discard”可能对你有帮助。此属性设置将删除行前后的半个前导。所以它适用于这种情况。

以下是使用&amp;#9474;。

的格式化结果

Sample formatting result

这是我的XSL-FO

<fo:table-and-caption>
    <fo:table border-after-width.conditionality="retain"
        border-before-width.conditionality="retain" border-bottom="2pt solid black"
        border-left="2pt solid black" border-right="2pt solid black"
        border-top="2pt solid black" font-size="9.5pt" space-after="2mm">
        <fo:table-column
            column-width="20mm" text-align="left"/>
        <fo:table-column
            column-width="40mm" text-align="left"/>
        <fo:table-column
            column-width="20mm" text-align="left"/>
        <fo:table-column
            column-width="20mm" text-align="left"/>
        <fo:table-body start-indent="3pt">
            <fo:table-row font-size="8pt" display-align="center" font-family="Arial">
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>35</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black" font-family="Courier New" font-size="11pt" line-height.conditionality="discard">
                    <fo:block>1</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>2</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>8247947</fo:block>
                </fo:table-cell>
            </fo:table-row>
            <fo:table-row font-size="8pt" display-align="center" font-family="Arial">
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>35</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black" font-family="Courier New" font-size="11pt" line-height.conditionality="discard">
                    <fo:block>&#x2502;</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>2</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>8247947</fo:block>
                </fo:table-cell>
            </fo:table-row>
            <fo:table-row font-size="8pt" display-align="center" font-family="Arial">
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>35</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black" font-family="Courier New" font-size="11pt" line-height.conditionality="discard">
                    <fo:block>&#x251C;2</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>2</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>8247947</fo:block>
                </fo:table-cell>
            </fo:table-row>
            <fo:table-row font-size="8pt" display-align="center" font-family="Arial">
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>35</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black" font-family="Courier New" font-size="11pt" line-height.conditionality="discard">
                    <fo:block>&#x2502;</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>2</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>8247947</fo:block>
                </fo:table-cell>
            </fo:table-row>
            <fo:table-row font-size="8pt" display-align="center" font-family="Arial">
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>35</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black" font-family="Courier New" font-size="11pt" line-height.conditionality="discard">
                    <fo:block>&#x2514;3</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>2</fo:block>
                </fo:table-cell>
                <fo:table-cell border-end-width="1pt" border-end-style="solid"  border-end-color="black">
                    <fo:block>8247947</fo:block>
                </fo:table-cell>
            </fo:table-row>
        </fo:table-body>
    </fo:table>
</fo:table-and-caption>