XSL-FO使单个元素中的文本颜色不同

时间:2014-11-05 16:25:31

标签: xslt xsl-fo

我整个上午都在寻找答案,没有运气。也许我只是没有正确搜索,我不知道。我使用以下标记集在PDF中显示XML标记:

<verbatimText>&lt;para>&lt;quantity>
&lt;quantityGroup quantityUnitOfMeasure="ft.lbf">&lt;quantityValue>10&lt;/quantityValue>
&lt;quantityTolerance quantityToleranceType="plusorminus" quantityUnitOfMeasure="ft.lbf">  2&lt;/quantityTolerance>&lt;/quantityGroup>
&lt;/quantity>.&lt;/para></verbatimText>

我没有在PDF中显示所有 BOLD 单色块的问题。我想要尝试和完成的是使XML语法着色,就像文本编辑器中的语法高亮,其中元素名称为蓝色,属性为红色,元素内容为黑色。

我认为有一种方法可以格式化文本的子字符串,但我很难找到一个很好的起点。

1 个答案:

答案 0 :(得分:2)

以下是如何使用XSLT 2.0(xsl:analyze-string)添加颜色的示例。

它可以使用一些调整,但说明我在想什么......

XML输入

<verbatimText>&lt;para>&lt;quantity>
&lt;quantityGroup quantityUnitOfMeasure="ft.lbf">&lt;quantityValue>10&lt;/quantityValue>
&lt;quantityTolerance quantityToleranceType="plusorminus" quantityUnitOfMeasure="ft.lbf">  2&lt;/quantityTolerance>&lt;/quantityGroup>
&lt;/quantity>.&lt;/para></verbatimText>

XSLT 2.0

<xsl:stylesheet version="2.0" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="/">
        <fo:root>
            <fo:layout-master-set>
                <fo:simple-page-master master-name="my-page" page-width="8.5in" page-height="11in">
                    <fo:region-body margin="1in" margin-top="1.5in" margin-bottom="1.5in"/>
                </fo:simple-page-master>
            </fo:layout-master-set>
            <fo:page-sequence master-reference="my-page">
                <fo:flow flow-name="xsl-region-body"> 
                    <xsl:apply-templates/>
                </fo:flow>
            </fo:page-sequence>
        </fo:root>
    </xsl:template>

    <xsl:template match="verbatimText">
        <fo:block>
            <xsl:analyze-string select="." regex="(&lt;/?)([^\s>]+)(>?)">
                <xsl:matching-substring>
                    <fo:inline color="#0000FF"><xsl:value-of select="concat(regex-group(1),'&#xFEFF;',regex-group(2),
                        if (regex-group(3)) then '&#xFEFF;>' else '')"/></fo:inline>
                </xsl:matching-substring>
                <xsl:non-matching-substring>
                    <xsl:analyze-string select="." regex="(\s)([^=&lt;]+=['&quot;])([^'&quot;]+)(['&quot;])(>?)">
                        <xsl:matching-substring>
                            <xsl:value-of select="regex-group(1)"/>
                            <fo:inline color="#FF0000"><xsl:value-of select="regex-group(2)"/></fo:inline>
                            <xsl:value-of select="regex-group(3)"/>
                            <fo:inline color="#FF0000"><xsl:value-of select="concat(regex-group(4),
                                if (regex-group(5)) then '&#xFEFF;>' else '')"/></fo:inline>
                        </xsl:matching-substring>
                        <xsl:non-matching-substring>
                            <xsl:value-of select="."/>
                        </xsl:non-matching-substring>
                    </xsl:analyze-string>
                </xsl:non-matching-substring>
            </xsl:analyze-string>                            
        </fo:block>
    </xsl:template>

</xsl:stylesheet>

XSL-FO (使用Saxon-HE 9.5)

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
   <fo:layout-master-set>
      <fo:simple-page-master master-name="my-page" page-width="8.5in" page-height="11in">
         <fo:region-body margin="1in" margin-top="1.5in" margin-bottom="1.5in"/>
      </fo:simple-page-master>
   </fo:layout-master-set>
   <fo:page-sequence master-reference="my-page">
      <fo:flow flow-name="xsl-region-body">
         <fo:block>
            <fo:inline color="#0000FF">&lt;para&gt;</fo:inline>
            <fo:inline color="#0000FF">&lt;quantity&gt;</fo:inline>
            <fo:inline color="#0000FF">&lt;quantityGroup</fo:inline> 
            <fo:inline color="#FF0000">quantityUnitOfMeasure="</fo:inline>ft.lbf<fo:inline color="#FF0000">"&gt;</fo:inline>
            <fo:inline color="#0000FF">&lt;quantityValue&gt;</fo:inline>10<fo:inline color="#0000FF">&lt;/quantityValue&gt;</fo:inline>
            <fo:inline color="#0000FF">&lt;quantityTolerance</fo:inline> 
            <fo:inline color="#FF0000">quantityToleranceType="</fo:inline>plusorminus<fo:inline color="#FF0000">"</fo:inline> 
            <fo:inline color="#FF0000">quantityUnitOfMeasure="</fo:inline>ft.lbf<fo:inline color="#FF0000">"&gt;</fo:inline>  2<fo:inline color="#0000FF">&lt;/quantityTolerance&gt;</fo:inline>
            <fo:inline color="#0000FF">&lt;/quantityGroup&gt;</fo:inline>
            <fo:inline color="#0000FF">&lt;/quantity&gt;</fo:inline>.<fo:inline color="#0000FF">&lt;/para&gt;</fo:inline>
         </fo:block>
      </fo:flow>
   </fo:page-sequence>
</fo:root>

PDF输出(使用FOP 1.1)

enter image description here