因此,给定任何para
包含 的内容xref
,您希望将链接的图形(减去它们的id
属性)复制到para
内容的开头。我会定义一个键来通过 id 快速访问figure
元素:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:key name="figureById" match="figure" use="@id" />
<xsl:template match="@*|node()">
<xsl:copy><xsl:apply-templates select="@*|node()" /></xsl:copy>
</xsl:template>
<xsl:template match="para[.//xref]">
<xsl:copy>
<xsl:apply-templates select="@*" /><!-- may not be necessary -->
<!-- copy in referenced figures -->
<xsl:apply-templates select="key('figureById', .//xref/@linkend)"
mode="noid"/>
<!-- and continue with child nodes as normal -->
<xsl:apply-templates select="node()" />
</xsl:copy>
</xsl:template>
<!-- special almost-identity template to remove the id attribute -->
<xsl:template match="node()" mode="noid">
<xsl:copy>
<xsl:apply-templates select="@*[local-name() != 'id']|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
这利用了key
函数的一个很好的特性,如果你将一个节点集作为它的第二个参数(要查找的键值)传递给它,那么结果是依次查找每个键值的节点集的并集. 因此,为您提供与此段落中的任何元素匹配的key('figureById', xref/@linkend)
所有图形元素,但如果多次引用同一个图形,您只会插入一个图形副本。id
xref
更新引用以指向复制的数字将是锦上添花
您可以通过重写复制图形的 ID 以包含generate-id()
目标段落的 ID 来实现这一点,然后在链接端使用相同的转换xref
。像这样的东西:
<xsl:template match="para[.//xref]">
<xsl:copy>
<xsl:apply-templates select="@*" /><!-- may not be necessary -->
<!-- copy in referenced figures, modifying their ids to include our own -->
<xsl:apply-templates select="key('figureById', .//xref/@linkend)"
mode="modify-id">
<xsl:with-param name="targetNode" select="." />
</xsl:apply-templates>
<!-- and continue with child nodes as normal -->
<xsl:apply-templates select="node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="node()" mode="modify-id">
<xsl:param name="targetNode" />
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:attribute name="id">
<xsl:value-of select="concat(generate-id($targetNode), '-', @id)" />
</xsl:attribute>
<xsl:apply-templates select="node()" />
</xsl:copy>
</xsl:template>
<!-- munge linkend attributes in the same way we did for copied figure ids -->
<xsl:template match="para//xref/@linkend">
<xsl:attribute name="linkend">
<xsl:value-of select="concat(generate-id(ancestor::para[1]), '-', .)" />
</xsl:attribute>
</xsl:template>
在我的系统上,使用xsltproc
(并将您的示例包装在根标签中以使其格式良好),这会产生
<?xml version="1.0"?>
<root>
<chapter id="intro">
<title>Introduction</title>
<para><figure id="idp1744-some-figure"><title>my figure...</title><mediaobject>...</mediaobject></figure>Welcome to our new product. One of its
new features is a <xref linkend="idp1744-some-figure"/>.
Other new features include ...
</para>
<para><figure id="idp2656-some-figure"><title>my figure...</title><mediaobject>...</mediaobject></figure>Grab that <xref linkend="idp2656-some-figure"/> and pull it here too.</para>
</chapter>
<chapter>
<title>Some other chapter</title>
<para>This chapter contains the figure!
<figure id="some-figure"><title>my figure...</title><mediaobject>...</mediaobject></figure>
</para>
</chapter>
</root>
生成的 ID(在本例中)的确切形式idpNNNN
因处理器而异,但保证它们是唯一且一致的。