3 <xsl:stylesheet version="1.0"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
6 <xsl:import href="common.xsl"/>
8 <xsl:output method="xml"/>
10 <xsl:template match="/">
13 <title><xsl:value-of select="publication/title"/></title>
16 <xsl:apply-templates/>
21 <xsl:template match="publication">
22 <h1><xsl:value-of select="title"/></h1>
24 <xsl:for-each select="author">
26 <xsl:when test="@file">
27 <a href="../../people/{@file}.html">
28 <xsl:call-template name="person-name">
29 <xsl:with-param name="form" select="'abbreviated'"/>
30 <xsl:with-param name="file" select="@file"/>
35 <xsl:value-of select="surname"/>
36 <xsl:text>, </xsl:text>
37 <xsl:value-of select="name"/>
40 <xsl:if test="position() != last()">
41 <xsl:text> ; </xsl:text>
45 <p><xsl:value-of select="where"/></p>
47 <p>Download: <a href="{html/@file}.html">[HTML]</a></p>