<?xml version='1.0' encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:m="http://www.w3.org/1998/Math/MathML" version='1.0'> <xsl:output method="text" indent="no" encoding="UTF-8"/> <!-- ====================================================================== --> <!-- $Id: mmltex.xsl,v 1.8 2005/02/28 18:50:45 shade33 Exp $ This file is part of the XSLT MathML Library distribution. See ./README or http://xsltml.sf.net for copyright and other information --> <!-- ====================================================================== --> <xsl:include href="tokens.xsl"/> <xsl:include href="glayout.xsl"/> <xsl:include href="scripts.xsl"/> <xsl:include href="tables.xsl"/> <xsl:include href="entities-mod.xsl"/> <xsl:include href="cmarkup.xsl"/> <xsl:strip-space elements="m:*"/> <xsl:template match="m:math[not(@mode) or @mode='inline'][not(@display)] | m:math[@display='inline']"> <xsl:text>$ </xsl:text> <xsl:apply-templates/> <xsl:text>$</xsl:text> </xsl:template> <xsl:template match="m:math[@display='block'] | m:math[@mode='display'][not(@display)]"> <xsl:text>
\[
	</xsl:text> <xsl:apply-templates/> <xsl:text>
\]</xsl:text> </xsl:template> </xsl:stylesheet>