xsl-list
[Top] [All Lists]

[xsl] Counting with xsl:key

2009-03-31 19:15:44
Hello list,

Suppose I have a Key to store all my figure/@id. I want to have a figure reference (figref) that will look up the figure in the key and display its position or count. ?

For example:

<xsl:key name="fig-key" match="figure" use="@id"/>

      <xsl:template match="FIGREF">
                <fo:basic-link internal-destination="{key('fig-key', 
@href)/@id}">
                        <xsl:text>Figure </xsl:text>
                        <xsl:value-of select="count(key('fig-key', @href))"/>
                </fo:basic-link>
        </xsl:template>

My input xml has 4 figures, but it always shows one when the template is processed.

Thanks for the help.

Phil



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