<?xml version='1.0' encoding=“UTF-8”?> <xsl:stylesheet xmlns:xsl=“www.w3.org/1999/XSL/Transform”
xmlns:m="http://www.w3.org/1998/Math/MathML" version='1.0'> <xsl:template match="m:msubsup"> <xsl:text>{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}_{</xsl:text> <xsl:apply-templates select="./*[2]"/> <xsl:text>}^{</xsl:text> <xsl:apply-templates select="./*[3]"/> <xsl:text>}</xsl:text> </xsl:template>
</xsl:stylesheet>