<xsl:template match="dvd"> <xsl:apply-templates/> </xsl:template>
<xsl:template match="dvd/filenumber"> <xsl:text>[</xsl:text> <xsl:text></xsl:text>
<xsl:apply-templates/> <xsl:text></xsl:text> <xsl:text>]</xsl:text> </xsl:template>
D134
My main problem seems to be the proper incantations and in the right order.
What is the relation between the <xsl:template>-definitions and the xml-processing, because these data show up in the result?
What is in this respect the function of macros like \defineXMLenvironment, etc? From the example document I cannot infer the relation between these and the <xsl:template>-definitions.
Just some pointers in the right direction may set me on the right track. Thanks in advance.