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.
________________________________________________________________________
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--