cheap nfl jerseys china cheap nfl jerseys free shipping wholesale nfl jerseys china wholesale jerseys from china cheap nfl jerseys free shipping cheap nfl jerseys for sale cheap jerseys free shipping wholesale nfl jerseys from china cheap nfl jerseys sale cheap nike nfl jerseys china wholesale jerseys free shipping cheap nfl jerseys wholesale wholesale nfl jerseys online cheap nfl jerseys wholesale china jerseys wholesale cheap coach handbags outlet authentic designer handbags cheap coach handbags outlet cheap coach purses outlet discount coach bags coach bags sale coach purse outlet cheap real coach purses coach handbags sale online coach purse outlet michael kors outlet online store cheap michael kors bags cheap michael kors purse michael kors factory outlet online cheap michael kors handbags cheap michael kors purses michael kors bags outlet online cheap michael kors purse michael kors handbags discount cheap michael kors purse michael kors handbags discount
cheap nfl jerseys china cheap nfl jerseys free shipping wholesale nfl jerseys china wholesale jerseys from china cheap nfl jerseys free shipping cheap nfl jerseys for sale cheap jerseys free shipping wholesale nfl jerseys from china cheap nfl jerseys sale cheap nike nfl jerseys china wholesale jerseys free shipping cheap nfl jerseys wholesale wholesale nfl jerseys online cheap nfl jerseys wholesale china jerseys wholesale cheap coach handbags outlet authentic designer handbags cheap coach handbags outlet cheap coach purses outlet discount coach bags coach bags sale coach purse outlet cheap real coach purses coach handbags sale online coach purse outlet michael kors outlet online store cheap michael kors bags cheap michael kors purse michael kors factory outlet online cheap michael kors handbags cheap michael kors purses michael kors bags outlet online cheap michael kors purse michael kors handbags discount cheap michael kors purse michael kors handbags discount
>> pag. 29 << | indietro | avanti | indice | indice analitico

29.

Questo stylesheet dimostra il comportamento default dell'elemento xsl:number. La numerazione di elementi capitolo dipende dalla posizione dell'elemento. Ogni livello è numerarto indipendentemente. La definizione dell'attributo level a multiple in questo stylesheet rende più naturale la numerazione.

XSLT stylesheet 1

XML Source
<source>

<chapter>First Chapter</chapter>
<chapter>Second Chapter
     <chapter>Subchapter 1</chapter>
     <chapter>Subchapter 2</chapter>
</chapter>
<chapter>Third Chapter
     <chapter>Subchapter A</chapter>
     <chapter>Subchapter B
          <chapter>sub a</chapter>
          <chapter>sub b</chapter>
     </chapter>
     <chapter>Subchapter C</chapter>
</chapter>

</source>

Output
<TABLE BORDER="1">
  <TR>
     <TH>Number</TH>
     <TH>text</TH>
  </TR>
  <TR>
     <TD>1</TD>
     <TD>First Chapter</TD>
  </TR>
  <TR>
     <TD>2</TD>
     <TD>Second Chapter
</TD>
  </TR>
  <TR>
     <TD>1</TD>
     <TD>Subchapter 1</TD>
  </TR>
  <TR>
     <TD>2</TD>
     <TD>Subchapter 2</TD>
  </TR>
  <TR>
     <TD>3</TD>
     <TD>Third Chapter
</TD>
  </TR>
  <TR>
     <TD>1</TD>
     <TD>Subchapter A</TD>
  </TR>
  <TR>
     <TD>2</TD>
     <TD>Subchapter B
</TD>
  </TR>
  <TR>
     <TD>1</TD>
     <TD>sub a</TD>
  </TR>
  <TR>
     <TD>2</TD>
     <TD>sub b</TD>
  </TR>
  <TR>
     <TD>3</TD>
     <TD>Subchapter C</TD>
  </TR>
</TABLE>

HTML view
Number text
1 First Chapter
2 Second Chapter
1 Subchapter 1
2 Subchapter 2
3 Third Chapter
1 Subchapter A
2 Subchapter B
1 sub a
2 sub b
3 Subchapter C
XSLT stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
     <TABLE BORDER="1">
          <TR>
               <TH>Number</TH>
               <TH>text</TH>
          </TR>
          <xsl:for-each select="//chapter">
               <TR>
                    <TD>
                         <xsl:number/>
                    </TD>
                    <TD>
                         <xsl:value-of select="./text()"/>
                    </TD>
               </TR>
          </xsl:for-each>
     </TABLE>
</xsl:template>


</xsl:stylesheet>



XSLT stylesheet 2

XML Source
<source>

<chapter>First Chapter</chapter>
<chapter>Second Chapter
     <chapter>Subchapter 1</chapter>
     <chapter>Subchapter 2</chapter>
</chapter>
<chapter>Third Chapter
     <chapter>Subchapter A</chapter>
     <chapter>Subchapter B
          <chapter>sub a</chapter>
          <chapter>sub b</chapter>
     </chapter>
     <chapter>Subchapter C</chapter>
</chapter>

</source>

Output
<TABLE BORDER="1">
  <TR>
     <TH>Number</TH>
     <TH>text</TH>
  </TR>
  <TR>
     <TD>1</TD>
     <TD>First Chapter</TD>
  </TR>
  <TR>
     <TD>2</TD>
     <TD>Second Chapter
</TD>
  </TR>
  <TR>
     <TD>2.1</TD>
     <TD>Subchapter 1</TD>
  </TR>
  <TR>
     <TD>2.2</TD>
     <TD>Subchapter 2</TD>
  </TR>
  <TR>
     <TD>3</TD>
     <TD>Third Chapter
</TD>
  </TR>
  <TR>
     <TD>3.1</TD>
     <TD>Subchapter A</TD>
  </TR>
  <TR>
     <TD>3.2</TD>
     <TD>Subchapter B
</TD>
  </TR>
  <TR>
     <TD>3.2.1</TD>
     <TD>sub a</TD>
  </TR>
  <TR>
     <TD>3.2.2</TD>
     <TD>sub b</TD>
  </TR>
  <TR>
     <TD>3.3</TD>
     <TD>Subchapter C</TD>
  </TR>
</TABLE>

HTML view
Number text
1 First Chapter
2 Second Chapter
2.1 Subchapter 1
2.2 Subchapter 2
3 Third Chapter
3.1 Subchapter A
3.2 Subchapter B
3.2.1 sub a
3.2.2 sub b
3.3 Subchapter C
XSLT stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
     <TABLE BORDER="1">
          <TR>
               <TH>Number</TH>
               <TH>text</TH>
          </TR>
          <xsl:for-each select="//chapter">
               <TR>
                    <TD>
                         <xsl:number level="multiple"/>
                    </TD>
                    <TD>
                         <xsl:value-of select="./text()"/>
                    </TD>
               </TR>
          </xsl:for-each>
     </TABLE>
</xsl:template>


</xsl:stylesheet>