xsl-list
[Top] [All Lists]

RE: position

2004-02-14 08:13:48
At 2004-02-14 15:54 +0100, m(_dot_)vanrootseler(_at_)chello(_dot_)nl wrote:
Thanks Ken, this works. I hadn't thought of using <xsl:number/>. The
output, though, starts with '0', so the first note is numbered '0' but I
solved this by putting the lot into a variable and upping it by 1.

:{)} That's the "programmer's approach" to solving the problem: throwing it in a variable and upping it by one. Many of my students come to class always trying to employ a programming approach.

May I instead suggest a hierarchical approach more consistent with XSLT:

  <xsl:if test="note">
    <xsl:for-each select="note">
      <xsl:number level="any"/>
      ...other note stuff...

That way (1) you aren't playing with variables and (2) the above note processing happens successfully when you have more than one note inside your parent element.

I hope this helps.

................... Ken


--
Public courses: upcoming world tour of hands-on XSL training events
Each week:    Monday-Wednesday: XSLT/XPath; Thursday-Friday: XSL-FO
Washington, DC: 2004-03-15            San Francisco, CA: 2004-03-22
Hong Kong: 2004-05-17    Germany: 2004-05-24    England: 2004-06-07
World-wide on-site corporate, government & user group XML training!

G. Ken Holman                  mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd.           http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0     +1(613)489-0999 (F:-0995)
Male Breast Cancer Awareness   http://www.CraneSoftwrights.com/s/bc


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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