<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="arg1"/>
<xsl:param name="arg2"/>
<xsl:output method="html"/>
<xsl:template match="/response/articles/article">
<div>
  <h1 id="articleTitle"><xsl:value-of select="title" /></h1>
  <h2 id="articleAuthors">
    <xsl:for-each select="authors/author"><span><xsl:value-of select="name" /></span></xsl:for-each>
  </h2>
  <div>
    <h3>Subject:</h3>
    <p id="articleSubject"><xsl:value-of select="subject/description" /></p>
  </div>
  <div>
    <h3>Issue:</h3>
    <p id="articleIssue">
      <span><xsl:value-of select="issue/enumeration" />,  </span>
      <span id="issueDate"><xsl:value-of select="issue/issue_date"/></span>
    </p>
  </div>
</div>
</xsl:template>
</xsl:stylesheet>