Re: [xsl] "grouping" footnote numbers

Subject: Re: [xsl] "grouping" footnote numbers
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 11 Oct 2011 10:16:18 +0100
On 11/10/2011 10:06, Emma Burrows wrote:

count="xref[@type='fn']"/></sup></a>



The secret for numbering any kind of cross reference in xslt is to number the thing being referenced, not the reference. Here you want to number the footnotes, and you want the cross reference to use the numbr of teh references footnote, so


if your footnotes are of the form

<ftn id="zzz">blah blah...</ftn>

and your xref is of the form

<xref type="fn" ref="zzz"/>

Then you want something like this

<xsl:key name="fn" match="ftn" use="@id"/>

<a href="footnote-xyz"><sup>
<xsl:for-each select="key('fn',@ref)">
<xsl:number level="any"/>
</xsl:for-each></sup></a>


so in your xref code you jump to the referenced footnote and then use the same labelling code as you use when labelling the footnote.


David



________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________


Current Thread