xsl-list
[Top] [All Lists]

Re: [xsl] REPOST - duplicate footnotes

2006-09-20 08:27:02

. I want to output the number of the  -->
                                      <!-- footnote referenced by this
targetid. -->
                                      <xsl:number
count="footnote[(_at_)opid=$xrefnode]" format="1" level="any"/>

don't call xsl:number when the current node is the xrefinline inline
element, you need to _go_ to the referenced footnote and then call
xsl:number so that you generate the same number on both the footnote and
the refererence.

something like
<xsl:key name="f" match="footnote" use="@opid"/>

then 
        <fo:inline baseline-shift="super"
font-size="8pt">
<xsl:for-each select="key('f',@targetid)">
 <xsl:number level="any"/.
</xsl:for-each>
</fo:inline>

David

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>