<tr width="15%">
<th>生日</th>
<td colspan="3">
<xsl:value-of select="/生日/年"/>年<xsl:value-of select="/生日/月"/>月<xsl:value-of select="/生日/日"/>日</td>
</tr>
<tr>
<th>联系方式</th>
<td colspan="2"><b>EMail</b>:<xsl:value-of select="/联系方式/EMail"/></td>
<td colspan="1"><b>电话</b>:<xsl:value-of select="/联系方式/电话"/></td>
</tr>
<tr>
<th rowspan="3">简历</th>
<th>开始时间</th>
<th>终止时间</th>
<th>所在单位</th>
<th>证明人</th>
</tr>
<xsl:for-each select="/简历/简历元素">
<tr>
<td><xsl:value-of select="开始年月/年"/>年<xsl:value-of select="开始年月/月"/>月</td>
<td><xsl:value-of select="结束年月/年"/>年<xsl:value-of select="结束年月/月"/>月</td>
<td><xsl:value-of select="所在单位"/></td>
<td><xsl:for-each select="证明人姓名"><xsl:value-of select="姓"/><xsl:value-of select="名"/><
br/></xsl:for-each></td>
</tr>
</xsl:for-each>