<table border="1" cellspacing="0">
<caption>个人简历(
<xsl:eval>formatindex(childnumber(this),"i")</xsl:eval>
)</caption>
<xsl:apply-templates select="name"/>
<xsl:apply-templates select="sex"/>
<xsl:apply-templates select="birthday"/>
<tr/>
<td>技能</td><td colspan="5">
<table cellspacing="0">
<xsl:apply-templates select="skill"/>
</table>
</td>
</table>
<br/>
</xsl:template>
<!--姓名模板-->
<xsl:template match="name"><td>姓名</td>
<td><xsl:value-of/></td>
</xsl:template>
<!--性别模板-->
<xsl:template match="sex"><td>性别</td>
<td><xsl:value-of/></td>
</xsl:template>
<!--生日模板-->
<xsl:template match="birthday"><td>生日</td>
<td><xsl:value-of/></td>
</xsl:template>
<!--技能模板-->
<xsl:template match="skill">
<tr><td><xsl:value-of/></td></tr>
</xsl:template>
</xsl:stylesheet>
