1 | <xsl:template match="/doc/publication"> |
2 | <P> |
3 | <H1> |
4 | Title: <xsl:value-of select="title"/> |
5 | </H1> |
6 | Author: |
7 | <BR/> |
8 | <xsl:apply-templates select="author"/> |
9 | <BR/> |
10 | Date: <xsl:value-of select="date"/> |
11 | <BR/> |
12 | Keywords: |
13 | <BR/> |
14 | <xsl:apply-templates select="keywords"/> |
15 | </P> |
16 | <HR/> |
17 | </xsl:template> |