1

我正在将 XML 文档转换为 HTML 文件以供在线显示(作为电子书)。

XML 文件中的每一章都包含在 a 中<div>并有一个标题 ( <head>)。我需要将每个标题显示两次——一次作为目录的一部分在开头,第二次在每章的顶部。我曾经mode="toc"在里面<xsl:template>这样做过。

我的问题是我的一些<head>标题有一个子元素<note>,其中包含编辑脚注。当标题出现在章节顶部时,我需要处理这些<note>标签,但我不希望它们显示在目录中(即当mode="toc".

我的问题是如何告诉样式表处理<head>目录的元素,但忽略任何子元素(它们应该发生)?

这是一个没有注释的示例标题,在目录模式下显示正常:

<div xml:id="d1.c1" type="chapter">
  <head>Pursuit of pleasure. Limits set to it by Virtue—
  Asceticism is Vice</head>
  <p>Contents of chapter 1 go here</p>
</div>

这是一个带有注释的注释,我希望在生成目录时将其删除:

<div xml:id="d1.c6" type="chapter">
  <head>Happiness and Virtue, how diminished by Asceticism in an indirect
  way.—Useful and genuine obligations elbowed out by spurious ones<note
  xml:id="d1.c6fn1" type="editor">In the text, the author has noted at this 
  point: 'These topics must have been handled elsewhere: perhaps gone through 
  with. Yet what follows may serve for an Introduction.'</note></head>
  <p>Contents of chapter 6 go here</p>
</div>

我的 XSL 目前看起来像这样:

<xsl:template match="tei:head" mode="toc">
    <xsl:if test="../@type = 'chapter'">
        <h3><a href="#{../@xml:id}"><xsl:apply-templates/></a></h3>
    </xsl:if>
</xsl:template>

我尝试在toc模式中添加一个新的空白模板匹配以供注意,但无济于事。例如:

<xsl:template match="tei:note" mode="toc"/>

我也试过tei:head/tei:note\\tei:head\tei:note

在与整个文档 ( /) 匹配的模板中,我使用以下内容显示目录:

<xsl:apply-templates select="//tei:head" mode="toc"/>

我尝试添加以下内容,但无济于事:

<xsl:apply-templates select="//tei:head/tei:note[@type = 'editorial']"
mode="toc"/>

任何帮助,将不胜感激!

ps 这是我第一次在 SE 上发帖,所以如果我错过了重要的细节,请告诉我,我会澄清的。谢谢。

4

1 回答 1

0

在执行特定于 toc 的处理时,您通常需要传递模式:

<xsl:template match="tei:head" mode="toc" />
<xsl:template match="tei:head[../@type = 'chapter']" mode="toc">
  <h3><a href="#{../@xml:id}"><xsl:apply-templates mode="toc" /></a></h3>
</xsl:template>

注意 上的mode属性xsl:apply-templates。如果你这样做,那么你的模板tei:note应该被遵守。

如果您使用的是身份模板,这可能意味着您需要一个用于该toc模式的模板。

或者,如果您在达到 后并不真正需要特定于模式的处理tei:head,您可以这样做:

<xsl:template match="tei:head" mode="toc" />
<xsl:template match="tei:head[../@type = 'chapter']" mode="toc">
  <h3><a href="#{../@xml:id}">
    <xsl:apply-templates select="node()[not(self::tei:note)]" />
  </a></h3>
</xsl:template>
于 2013-04-25T15:38:32.623 回答