<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="/">  <html>    <head>      <title>Playing with Bibliographies</title>       <link rel="stylesheet" href="bib.css" />    </head>    <body>      <h1>Masters Thesis List</h1>      <xsl:apply-templates />      <h1>PhD Thesis List</h1>      <xsl:apply-templates />    </body>  </html></xsl:template><xsl:template match="bib/mastersthesis">  <div>    <p>     <xsl:apply-templates select="author" /><br />     <xsl:apply-templates select="title" /><br />     <xsl:apply-templates select="year" /><br />      <xsl:apply-templates select="school" /><br />    </p>  </div></xsl:template><xsl:template match="bib/phdthesis">  <div>    <p>     <xsl:apply-templates select="author" /><br />     <xsl:apply-templates select="title" /><br />     <xsl:apply-templates select="year" /><br />      <xsl:apply-templates select="school" /><br />    </p>  </div></xsl:template><xsl:template match="author"><span class="author">Author:<xsl:apply-templates /></span></xsl:template><xsl:template match="title"><span class="title">Title:<xsl:apply-templates /></span></xsl:template><xsl:template match="year"><span class="year">Year:<xsl:apply-templates /></span></xsl:template><xsl:template match="school"><span class="school">School:<xsl:apply-templates /></span></xsl:template><xsl:template match="bib/article" /><xsl:template match="bib/www" /><xsl:template match="bib/phdthesis" /><xsl:template match="bib/proceedings" /><xsl:template match="bib/inproceedings" /></xsl:stylesheet>