xsl-list
[Top] [All Lists]

Re: [xsl] Ordering in XSL:Apply-Templates

2010-10-25 04:34:52
Change:

 <xsl:template 
match="contrib"><au><xsl:apply-templates/></au></xsl:template>

to

 <xsl:template 
match="contrib"><au>
<xsl:apply-templates select="./given-names"/>
<xsl:apply-templates select="./surname"/>
<xsl:apply-templates select="./qualifications"/>
</au></xsl:template>

Not tested so may have spell mistake but it is the way.

HTH,
Pankaj

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