Am 04.02.2015 um 22:57 schrieb Emmanuelle Morlock:
I want a space between the title and the publication year, which should be provided by the xsl:text </xsl:text> of the named template :
<xsl:text> </xsl:text>
What about
<xsl:text xml:space="preserve"> </xsl:text>
?
Anyway, I would suggest using something like
<xsl:variable name="char-space" xml:space="preserve">xsl:text </xsl:text></xsl:variable>
and
<xsl:value-of select="$char-space"/>
So that it is easier to understand which character is being added and there are less chances that the various formatters will mangle the code.
Regards,
-- Gioele Barabucci gioele@svario.it