<xsl:param name="id" select="/.."/>
<xsl:template match="/">
+ <wrapper>
<xsl:choose>
<xsl:when test="$id">
<xsl:apply-templates select="descendant::*[@id=$id]"/>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
+ </wrapper>
</xsl:template>
<xsl:template match="tml:tex[not(tml:math)]">
<!-- This is an empty TeX document. We generate the corresponding -->
<!-- empty MathML document. -->
- <m:math/>
</xsl:template>
<xsl:template match="tml:math">
- <m:math>
- <xsl:if test="@id">
- <xsl:attribute name="xref">
- <xsl:value-of select="@id"/>
- </xsl:attribute>
- </xsl:if>
- <xsl:if test="@display='1'">
- <xsl:attribute name="display">block</xsl:attribute>
- </xsl:if>
- <xsl:attribute name="display">block</xsl:attribute>
- <xsl:apply-templates select="*"/>
- </m:math>
+ <m:mstyle mathvariant="normal">
+ <xsl:if test="@id">
+ <xsl:attribute name="xref">
+ <xsl:value-of select="@id"/>
+ </xsl:attribute>
+ </xsl:if>
+ <xsl:if test="@display='1'">
+ <xsl:attribute name="display">block</xsl:attribute>
+ </xsl:if>
+ <xsl:attribute name="display">block</xsl:attribute>
+ <xsl:apply-templates select="*"/>
+ </m:mstyle>
</xsl:template>
<xsl:template match="tml:i">