Buenas.
Tengo un problema con un XSL, he comprobado que el problema está al hacer una tabla.
Pongo mi XLS en Spoiler
XSL<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match='/'>
<html>
<head>
<title>Biblioteca</title>
<LINK href="cssbiblioteca.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<h2>Bibliotecas</h2>
<xsl:for-each select="/biblioteca">
<xsl:sort select="nombre_biblioteca"/>
<b>Nombre de la Biblioteca:</b> <xsl:value-of select="nombre_biblioteca"/>
</xsl:for-each>
<h3>Bibliotecario</h3>
<xsl:for-each select="/biblioteca/bibliotecario">
<xsl:sort select="nombre_completo"/>
<b>Nombre:</b> <xsl:value-of select="nombre_completo"/>
<br/>
<b>Anyo de nacimiento:</b> <xsl:value-of select="anyo_nacimiento"/>
</xsl:for-each>
<h3>Libros y Revistas</h3>
<table border="1">
<tr>
<th>Titulo libro</th>
<th>Anyo</th>
<th>Editorial</th>
<th>Titulo Revista</th>
<th>Numero</th>
<th>Precio</th>
</tr>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="lr">
<tr>
<xsl:apply-templates select="titulos"/>
<xsl:apply-templates select="anyo"/>
<xsl:apply-templates select="editorial"/>
<xsl:apply-templates select="titulo"/>
<xsl:apply-templates select="numero"/>
<xsl:apply-templates select="precio"/>
</tr>
</xsl:template>
<xsl:template match="titulos">
<td>
<span>
<xsl:value-of select="."/></span>
</td>
</xsl:template>
<xsl:template match="anyo">
<td>
<span>
<xsl:value-of select="."/></span>
</td>
</xsl:template>
<xsl:template match="editorial">
<td>
<span>
<xsl:value-of select="."/></span>
</td>
</xsl:template>
<xsl:template match="titulo">
<td>
<span>
<xsl:value-of select="."/></span>
</td>
</xsl:template>
<xsl:template match="numero">
<td>
<span>
<xsl:value-of select="."/></span>€
</td>
</xsl:template>
<xsl:template match="precio">
<td>
<span>
<xsl:value-of select="."/></span>
</td>
</xsl:template>
</xsl:stylesheet>
Mi intención es saber como poder llamar al template "lr".
No es problema de Nombres, lo comprobe, si necesitan algo más para despejar dudas decirmelo.
Gracias a los que puedan ayudarme, tambien si sabeis como mejorar el XSL os estaria muy agradecido.