2

我正在寻找一种将任何引用的图形/节点复制到它被引用的位置的方法。

<chapter id="intro">
  <title>Introduction</title>
  <para>Welcome to our new product. One of its 
  new features is a <xref linkend="some-figure"/>.  
  Other new features include ...
  </para>
  <para>Grab that <xref linkend="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>

这可以变成:

<chapter id="intro">
  <title>Introduction</title>
  <para><figure><title>my figure...</title><mediaobject>...</mediaobject></figure>
  Welcome to our new product. One of its 
  new features is a <xref linkend="some-figure"/>.  
  Other new features include ...
  </para>
  <para><figure><title>my figure...</title><mediaobject>...</mediaobject></figure>
  Grab that <xref linkend="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>

更新引用以指向复制的数字将是锦上添花,但我想要有关将节点复制到引用位置的信息和方法。

4

2 回答 2

0

如果您只是想xref用相应的 替换 ,则可以将与figure匹配。@linkend@id

例子:

<xsl:stylesheet version="1.0" 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="xref">
        <xsl:apply-templates select="//figure[@id=current()/@linkend]"/>
    </xsl:template>

</xsl:stylesheet>
于 2013-08-19T17:13:32.630 回答
0

因此,给定任何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)所有图形元素,但如果多次引用同一个图形,您只会插入一个图形副本。idxref


更新引用以指向复制的数字将是锦上添花

您可以通过重写复制图形的 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因处理器而异,但保证它们是唯一且一致的。

于 2013-08-19T17:47:46.083 回答