Problema con XML

Hola tengo el siguiente archivo XML

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml:stylesheet type="text/xsl" href="articulos.xsl"?>
<Articles>
<Title>Ejemplo de Titulo</Title>
<Author>Carlos Lozano</Author>
<Text>
<Paragraph>Texto normal
texto en negrilla
coninua el texto normal</Paragraph>
</Text>
</Articles>

Y he querido formatearlo de la siguiente forma

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="Articles">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="Title">
<h1><xsl:value-of/></h1>
</xsl:template>

<xsl:template match="Text">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="Paragraph">
<p><xsl:value-of/></p>
</xsl:template>

<xsl:template match="Bold">
<strong><xsl:value-of/></strong>
</xsl:template>

</xsl:stylesheet>

Pero me sale un error el texto en negrilla no lo he podido formatear. EL motivo es que el texto puede tener texto subrayado, en Italica o en Negrilla y me es necesario especificarlo dentro del documento mismo.

Como puedo hacer para poder darle este tipo de formato?

Gracias ;)

Ayuda a las victimas del terremoto