Implemented cross-references to list items
• Added label attribute to <item> element.
• Added cross-referencing to <item> labels.

Note this only makes sense for enumerated lists, but this isn’t checked
as there’s no clean way to do it. There’s also no check that the <item>
is inside a list element, because there are about a billion different
element variants that can be used to specify a list.
1 parent ae061a1 commit 25904ad122cf824a76da9b5a767b99e9a01b5323
Nigel Stanger authored on 20 Feb 2019
Showing 2 changed files
View
27
modules/cross-references.xml
</common>
</template>
<!--
List item reference.
There are WAY too many different list element types to properly specify the match. Let's just stick with "item".
Items don't have a corresponding "name", so the surrounding text will have to supply it. Make sure to include such text in any hyperlink associated with the reference.
-->
<template name="list-item-reference" match="item" mode="reference">
<common formats="/latex/xelatex/">
<xsl:text>\ref*{</xsl:text>
<xsl:value-of select="@label" />
<xsl:text>}</xsl:text>
</common>
<common formats="/html/xhtml/">
<xsl:choose>
<xsl:when test="$showanswers = ('yes', 'y', 'true', 't', '1')">
<!-- it only really makes sense to count "item" elements within the same list -->
<xsl:number count="item" level="single" format="1" />
</xsl:when>
<xsl:otherwise>
<xsl:number count="item[not(ancestor::answer) and not(ancestor::omit) and not(ancestor::comment)]" level="single" format="1" />
</xsl:otherwise>
</xsl:choose>
</common>
</template>
<!--
Common template for item page references, as they're identical for all items. Standalone page references (i.e., not to a specific item) are dealt with below. Only relevant to (Xe)LaTeX as (X)HTML doesn't have pages.
-->
<template name="item-page-reference" match="section|figure|table|exercise" mode="page-reference">
View
35
modules/lists.xml
</common>
</template>
 
 
<!-- List items for non-definition lists. -->
<!--
List items for non-definition lists.
@label: A label that can be used for cross referencing. Any value can be used, as long as it's a legal identifier in both LaTeX and HTML. This is really only applicable to enumerated lists.
-->
<template name="list-item" match="item" mode="normal">
<common formats="/latex/xelatex/">
<xsl:text>\item </xsl:text>
<xsl:if test="@label">
<xsl:text>\label{</xsl:text>
<xsl:value-of select="@label" />
<xsl:text>}</xsl:text>
</xsl:if>
<xsl:apply-templates />
<xsl:call-template name="newline-internal" />
</common>
<common formats="/html/xhtml/">
<!--
Otherwise, insert <p> tags surrounding the item content so that the item spacing looks OK.
-->
<xsl:otherwise>
<li><p><xsl:apply-templates /></p></li>
<li>
<xsl:if test="@label">
<xsl:element name="a">
<xsl:attribute name="name">
<xsl:value-of select="@label" />
</xsl:attribute>
</xsl:element>
</xsl:if>
<p><xsl:apply-templates /></p>
</li>
</xsl:otherwise>
</xsl:choose>
</common>
</template>