Minor fixups.
[librarian.git] / librarian / res / embeds / mathml / mathml2latex.xslt
index 76ccf95..92f60fc 100644 (file)
@@ -5,25 +5,25 @@ xmlns:mml="http://www.w3.org/1998/Math/MathML">
 
 <xsl:output method="txt" encoding="utf-8" omit-xml-declaration="yes"/> 
 
-<xsl:template match="mml:mtext">
+<xsl:template match="mtext">
        <xsl:text>\textrm{</xsl:text>
        <xsl:apply-templates select="node()"/>
        <xsl:text>}</xsl:text>
 </xsl:template>
 
-<xsl:template match="mml:mi">
+<xsl:template match="mi">
        <xsl:value-of select="."/>
 </xsl:template>
 
-<xsl:template match="mml:mn">
+<xsl:template match="mn">
        <xsl:value-of select="."/>
 </xsl:template>
 
-<xsl:template match="mml:mo">
+<xsl:template match="mo">
        <xsl:value-of select="."/>
 </xsl:template>
 
-<xsl:template match="mml:msup">
+<xsl:template match="msup">
        <xsl:text>{</xsl:text>
        <xsl:apply-templates select="*[1]"/>
        <xsl:text>}^{</xsl:text>
@@ -31,7 +31,7 @@ xmlns:mml="http://www.w3.org/1998/Math/MathML">
        <xsl:text>}</xsl:text>
 </xsl:template>
 
-<xsl:template match="mml:msub">
+<xsl:template match="msub">
        <xsl:text>{</xsl:text>
        <xsl:apply-templates select="*[1]"/>
        <xsl:text>}_{</xsl:text>
@@ -39,19 +39,19 @@ xmlns:mml="http://www.w3.org/1998/Math/MathML">
        <xsl:text>}</xsl:text>
 </xsl:template>
 
-<xsl:template match="mml:mrow">
+<xsl:template match="mrow">
        <xsl:text>{</xsl:text>
        <xsl:apply-templates select="node()"/>
        <xsl:text>}</xsl:text>
 </xsl:template>
 
-<xsl:template match="mml:mfenced">
+<xsl:template match="mfenced">
        <xsl:text>(</xsl:text>
        <xsl:apply-templates select="node()"/>
        <xsl:text>)</xsl:text>
 </xsl:template>
 
-<xsl:template match="mml:mfrac">
+<xsl:template match="mfrac">
        <xsl:text>\frac{</xsl:text>
        <xsl:apply-templates select="*[1]"/>
        <xsl:text>}{</xsl:text>
@@ -59,7 +59,7 @@ xmlns:mml="http://www.w3.org/1998/Math/MathML">
        <xsl:text>}</xsl:text>
 </xsl:template>
 
-<xsl:template match="mml:varepsilon">
+<xsl:template match="varepsilon">
        <xsl:text>\varepsilon </xsl:text>
 </xsl:template>