<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output method="html" />
   <xsl:template match="/">
     <table border="1" cellspacing="1" align="center">
       <xsl:for-each select="books/book">
         <tr><td>
           Title: <xsl:value-of select="title" /><br />
           Price: <xsl:value-of select="@price" /><br />
           Authors:
           <ul>
             <xsl:for-each select="authors/author">
               <li><xsl:value-of select="text()" /></li>
             </xsl:for-each>
           </ul>
           Year Published: <xsl:value-of select="year" />
         </td></tr>         
       </xsl:for-each>   
     </table>
   </xsl:template>
</xsl:stylesheet>   