Write a template for 'title' elements that removes the leading numbers e.g. with XSLT 2.0
Code:
<xsl:template match="title">
<xsl:copy>
<xsl:value-of select="replace(., '^[\d\.]+', '')"/>
</xsl:copy>
</xsl:template>
--
Martin Honnen
Microsoft MVP - XML