First page Back Continue Last page Graphics
Continuation of Notes...
Notes:
<xsl:template match="student">
<FONT SIZE="4"><B>Name: <I>
<xsl:value-of select="@name" />
</I><BR/>
ID: <I>
<xsl:value-of select="@id" />
</I></B></FONT><P/>
</xsl:template>
<xsl:template match="term">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="heading">
<TR><TH COLSPAN="3">
<xsl:value-of select="@name" />
</TH></TR>
</xsl:template>
<xsl:template match="course">
<TR>
<TD><xsl:value-of select="course-name" /></TD>
<TD><xsl:value-of select="grade" /></TD>
<TD ALIGN="right"><xsl:value-of select="credits" /></TD>
</TR>
</xsl:template>
</xsl:stylesheet>