<?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'> <!-- Copyright (C) 2001, 2002 Vasil Yaroshevich Modified Fabian Seoane 2007 for sympy --> <xsl:output method="text" indent="no" encoding="UTF-8"/> <!-- ====================================================================== --> <!-- $id: mmltex.xsl, 2002/22/11 Exp $ This file is part of the XSLT MathML Library distribution. See ./README or http://www.raleigh.ru/MathML/mmltex for copyright and other information --> <!-- ====================================================================== --> <!-- Note: variables colora (template color) and symbola (template startspace) only for Sablotron --> <xsl:template name="startspace"> <xsl:param name="symbol"/> <xsl:if test="contains($symbol,' ')"> <xsl:variable name="symbola" select="concat(substring-before($symbol,' '),substring-after($symbol,' '))"/> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="$symbola"/> </xsl:call-template> </xsl:if> <xsl:if test="not(contains($symbol,' '))"> <xsl:value-of select="$symbol"/> </xsl:if> </xsl:template> <xsl:strip-space elements="m:*"/> <xsl:template match="m:math"> <xsl:text>&#x00024;</xsl:text> <xsl:apply-templates/> <xsl:text>&#x00024;</xsl:text> </xsl:template> <!-- ====================================================================== --> <!-- $id: tokens.xsl, 2002/22/11 Exp $ This file is part of the XSLT MathML Library distribution. See ./README or http://www.raleigh.ru/MathML/mmltex for copyright and other information --> <!-- ====================================================================== --> <!-- 4.4.1.1 cn --> <xsl:template match="m:cn"><xsl:apply-templates/></xsl:template> <xsl:template match="m:cn[@type='complex-cartesian']"> <xsl:apply-templates select="text()[1]"/> <xsl:text>+</xsl:text> <xsl:apply-templates select="text()[2]"/> <xsl:text>i</xsl:text> </xsl:template> <xsl:template match="m:cn[@type='rational']"> <xsl:apply-templates select="text()[1]"/> <xsl:text>/</xsl:text> <xsl:apply-templates select="text()[2]"/> </xsl:template> <xsl:template match="m:cn[@type='integer' and @base!=10]"> <xsl:apply-templates/> <xsl:text>_{</xsl:text><xsl:value-of select="@base"/><xsl:text>}</xsl:text> </xsl:template> <xsl:template match="m:cn[@type='complex-polar']"> <xsl:apply-templates select="text()[1]"/> <xsl:text>e^{i </xsl:text> <xsl:apply-templates select="text()[2]"/> <xsl:text>}</xsl:text> </xsl:template> <xsl:template match="m:cn[@type='e-notation']"> <xsl:apply-templates select="text()[1]"/> <xsl:text>E</xsl:text> <xsl:apply-templates select="text()[2]"/> </xsl:template> <!-- 4.4.1.1 ci 4.4.1.2 csymbol --> <xsl:template match="m:ci | m:csymbol"> <xsl:choose> <xsl:when test="string-length(normalize-space(text()))>1"> <xsl:text>\mathrm{</xsl:text><xsl:apply-templates/><xsl:text>}</xsl:text> </xsl:when> <xsl:otherwise><xsl:apply-templates/></xsl:otherwise> </xsl:choose> </xsl:template> <!-- 4.4.2.1 apply 4.4.2.2 reln --> <xsl:template match="m:apply | m:reln"> <xsl:apply-templates select="*[1]"> <!-- <? --> <xsl:with-param name="p" select="10"/> </xsl:apply-templates> <!-- ?> --> <xsl:text>(</xsl:text> <xsl:for-each select="*[position()>1]"> <xsl:apply-templates select="."/> <xsl:if test="not(position()=last())"><xsl:text>, </xsl:text></xsl:if> </xsl:for-each> <xsl:text>)</xsl:text> </xsl:template> <!-- 4.4.2.3 fn --> <xsl:template match="m:fn[m:apply[1]]"> <!-- for m:fn using default rule --> <xsl:text>(</xsl:text><xsl:apply-templates/><xsl:text>)</xsl:text> </xsl:template> <!-- 4.4.2.4 interval --> <xsl:template match="m:interval[*[2]]"> <xsl:choose> <xsl:when test="@closure='open' or @closure='open-closed'"> <xsl:text>\left(</xsl:text> </xsl:when> <xsl:otherwise><xsl:text>\left[</xsl:text></xsl:otherwise> </xsl:choose> <xsl:apply-templates select="*[1]"/> <xsl:text> , </xsl:text> <xsl:apply-templates select="*[2]"/> <xsl:choose> <xsl:when test="@closure='open' or @closure='closed-open'"> <xsl:text>\right)</xsl:text> </xsl:when> <xsl:otherwise><xsl:text>\right]</xsl:text></xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="m:interval"> <xsl:text>\left\{</xsl:text><xsl:apply-templates/><xsl:text>\right\}</xsl:text> </xsl:template> <!-- 4.4.2.5 inverse --> <xsl:template match="m:apply[*[1][self::m:inverse]]"> <xsl:apply-templates select="*[2]"/><xsl:text>^{(-1)}</xsl:text> </xsl:template> <!-- 4.4.2.6 sep 4.4.2.7 condition --> <xsl:template match="m:sep | m:condition"><xsl:apply-templates/></xsl:template> <!-- 4.4.2.9 lambda --> <xsl:template match="m:lambda"> <xsl:text>\mathrm{lambda}\: </xsl:text> <xsl:apply-templates select="m:bvar/*"/> <xsl:text>.\: </xsl:text> <xsl:apply-templates select="*[last()]"/> </xsl:template> <!-- 4.4.2.10 compose --> <xsl:template match="m:apply[*[1][self::m:compose]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\circ </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.2.11 ident --> <xsl:template match="m:ident"><xsl:text>\mathrm{id}</xsl:text></xsl:template> <!-- 4.4.2.12 domain 4.4.2.13 codomain 4.4.2.14 image 4.4.3.21 arg 4.4.3.24 lcm 4.4.5.9 grad 4.4.5.10 curl 4.4.9.4 median 4.4.9.5 mode--> <xsl:template match="m:domain | m:codomain | m:image | m:arg | m:lcm | m:grad | m:curl | m:median | m:mode"> <xsl:text>\mathop{\mathrm{</xsl:text> <xsl:value-of select="local-name()"/> <xsl:text>}}</xsl:text> </xsl:template> <!-- 4.4.2.15 domainofapplication --> <xsl:template match="m:domainofapplication"/> <!-- 4.4.2.16 piecewise --> <xsl:template match="m:piecewise"> <xsl:text>\begin{cases}</xsl:text> <xsl:apply-templates select="m:piece"/> <xsl:apply-templates select="m:otherwise"/> <xsl:text>\end{cases}</xsl:text> </xsl:template> <xsl:template match="m:piece"> <xsl:apply-templates select="*[1]"/> <xsl:text> &amp; \text{if $</xsl:text> <xsl:apply-templates select="*[2]"/> <xsl:text>$}</xsl:text> <xsl:if test="not(position()=last()) or ../m:otherwise"><xsl:text>\\ </xsl:text></xsl:if> </xsl:template> <xsl:template match="m:otherwise"> <xsl:apply-templates select="*[1]"/> <xsl:text> &amp; \text{otherwise}</xsl:text> </xsl:template> <!-- 4.4.3.1 quotient --> <xsl:template match="m:apply[*[1][self::m:quotient]]"> <xsl:text>\left\lfloor\frac{</xsl:text> <xsl:apply-templates select="*[2]"/> <xsl:text>}{</xsl:text> <xsl:apply-templates select="*[3]"/> <xsl:text>}\right\rfloor </xsl:text> </xsl:template> <!-- 4.4.3.2 factorial --> <xsl:template match="m:apply[*[1][self::m:factorial]]"> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> <xsl:text>!</xsl:text> </xsl:template> <!-- 4.4.3.3 divide --> <xsl:template match="m:apply[*[1][self::m:divide]]"> <xsl:param name="p" select="0"/> <xsl:param name="this-p" select="3"/> <xsl:if test="$this-p &lt; $p"><xsl:text>\left(</xsl:text></xsl:if> <xsl:text>\frac{</xsl:text> <xsl:apply-templates select="*[2]"/> <!-- <xsl:with-param name="p" select="$this-p"/> </xsl:apply-templates>--> <xsl:text>}{</xsl:text> <xsl:apply-templates select="*[3]"/> <!-- <xsl:with-param name="p" select="$this-p"/> </xsl:apply-templates>--> <xsl:text>}</xsl:text> <xsl:if test="$this-p &lt; $p"><xsl:text>\right)</xsl:text></xsl:if> </xsl:template> <!-- 4.4.3.4 max min --> <xsl:template match="m:apply[*[1][self::m:max or self::m:min]]"> <xsl:text>\</xsl:text> <xsl:value-of select="local-name(*[1])"/> <xsl:text>\{</xsl:text> <xsl:choose> <xsl:when test="m:condition"> <xsl:apply-templates select="*[last()]"/> <xsl:text>, </xsl:text> <xsl:apply-templates select="m:condition/node()"/> </xsl:when> <xsl:otherwise> <xsl:for-each select="*[position() &gt; 1]"> <xsl:apply-templates select="."/> <xsl:if test="position() !=last()"><xsl:text> , </xsl:text></xsl:if> </xsl:for-each> </xsl:otherwise> </xsl:choose> <xsl:text>\}</xsl:text> </xsl:template> <!-- 4.4.3.5 minus--> <xsl:template match="m:apply[*[1][self::m:minus] and count(*)=2]"> <xsl:text>-</xsl:text> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="5"/> </xsl:apply-templates> </xsl:template> <xsl:template match="m:apply[*[1][self::m:minus] and count(*)&gt;2]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="mo">-</xsl:with-param> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="this-p" select="2"/> </xsl:call-template> </xsl:template> <!-- 4.4.3.6 plus--> <xsl:template match="m:apply[*[1][self::m:plus]]"> <xsl:param name="p" select="0"/> <xsl:if test="$p &gt; 2"> <xsl:text>(</xsl:text> </xsl:if> <xsl:for-each select="*[position()&gt;1]"> <xsl:if test="position() &gt; 1"> <xsl:choose> <xsl:when test="self::m:apply[*[1][self::m:times] and *[2][self::m:apply/*[1][self::m:minus] or self::m:cn[not(m:sep) and (number(.) &lt; 0)]]]">-</xsl:when> <xsl:otherwise>+</xsl:otherwise> </xsl:choose> </xsl:if> <xsl:choose> <xsl:when test="self::m:apply[*[1][self::m:times] and *[2][self::m:cn[not(m:sep) and (number(.) &lt;0)]]]"> <xsl:value-of select="-(*[2])"/> <xsl:apply-templates select="."> <xsl:with-param name="first" select="2"/> <xsl:with-param name="p" select="2"/> </xsl:apply-templates> </xsl:when> <xsl:when test="self::m:apply[*[1][self::m:times] and *[2][self::m:apply/*[1][self::m:minus]]]"> <xsl:apply-templates select="./*[2]/*[2]"/> <xsl:apply-templates select="."> <xsl:with-param name="first" select="2"/> <xsl:with-param name="p" select="2"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="."> <xsl:with-param name="p" select="2"/> </xsl:apply-templates> </xsl:otherwise> </xsl:choose> </xsl:for-each> <xsl:if test="$p &gt; 2"> <xsl:text>)</xsl:text> </xsl:if> </xsl:template> <!-- 4.4.3.7 power --> <xsl:template match="m:apply[*[1][self::m:power]]"> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="5"/> </xsl:apply-templates> <xsl:text>^{</xsl:text> <xsl:apply-templates select="*[3]"> <xsl:with-param name="p" select="5"/> </xsl:apply-templates> <xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.3.8 remainder --> <xsl:template match="m:apply[*[1][self::m:rem]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="mo">\mod </xsl:with-param> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="this-p" select="3"/> </xsl:call-template> </xsl:template> <!-- 4.4.3.9 times--> <xsl:template match="m:apply[*[1][self::m:times]]" name="times"> <xsl:param name="p" select="0"/> <xsl:param name="first" select="1"/> <xsl:if test="$p &gt; 3"><xsl:text>(</xsl:text></xsl:if> <xsl:for-each select="*[position()&gt;1]"> <xsl:if test="position() &gt; 1"> <xsl:choose> <xsl:when test="self::m:cn">\times <!-- times --></xsl:when> <xsl:otherwise><!--invisible times--></xsl:otherwise> </xsl:choose> </xsl:if> <xsl:if test="position()&gt;= $first"> <xsl:apply-templates select="."> <xsl:with-param name="p" select="3"/> </xsl:apply-templates> </xsl:if> </xsl:for-each> <xsl:if test="$p &gt; 3"><xsl:text>)</xsl:text></xsl:if> </xsl:template> <!-- 4.4.3.10 root --> <xsl:template match="m:apply[*[1][self::m:root]]"> <xsl:text>\sqrt</xsl:text> <xsl:if test="m:degree!=2"> <xsl:text>[</xsl:text> <xsl:apply-templates select="m:degree/*"/> <xsl:text>]</xsl:text> </xsl:if> <xsl:text>{</xsl:text> <xsl:apply-templates select="*[position()&gt;1 and not(self::m:degree)]"/> <xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.3.11 gcd --> <xsl:template match="m:gcd"><xsl:text>\gcd </xsl:text></xsl:template> <!-- 4.4.3.12 and --> <xsl:template match="m:apply[*[1][self::m:and]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\land <!-- and --></xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.3.13 or --> <xsl:template match="m:apply[*[1][self::m:or]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="3"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\lor </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.3.14 xor --> <xsl:template match="m:apply[*[1][self::m:xor]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="3"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\mathop{\mathrm{xor}}</xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.3.15 not --> <xsl:template match="m:apply[*[1][self::m:not]]"> <xsl:text>\neg </xsl:text> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> </xsl:template> <!-- 4.4.3.16 implies --> <xsl:template match="m:apply[*[1][self::m:implies]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="mo">\implies </xsl:with-param> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="this-p" select="3"/> </xsl:call-template> </xsl:template> <!-- 4.4.3.17 forall 4.4.3.18 exists --> <xsl:template match="m:apply[*[1][self::m:forall or self::m:exists]]"> <xsl:text>\</xsl:text> <xsl:value-of select="local-name(*[1])"/> <xsl:text> </xsl:text> <xsl:apply-templates select="m:bvar"/> <xsl:if test="m:condition"> <xsl:text>, </xsl:text><xsl:apply-templates select="m:condition"/> </xsl:if> <xsl:if test="*[last()][local-name()!='condition'][local-name()!='bvar']"> <xsl:text>\colon </xsl:text> <xsl:apply-templates select="*[last()]"/> </xsl:if> </xsl:template> <!-- 4.4.3.19 abs --> <xsl:template match="m:apply[*[1][self::m:abs]]"> <xsl:text>\left|</xsl:text> <xsl:apply-templates select="*[2]"/> <xsl:text>\right|</xsl:text> </xsl:template> <!-- 4.4.3.20 conjugate --> <xsl:template match="m:apply[*[1][self::m:conjugate]]"> <xsl:text>\overline{</xsl:text><xsl:apply-templates select="*[2]"/><xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.3.22 real --> <xsl:template match="m:real"><xsl:text>\Re </xsl:text></xsl:template> <!-- 4.4.3.23 imaginary --> <xsl:template match="m:imaginary"><xsl:text>\Im </xsl:text></xsl:template> <!-- 4.4.3.25 floor --> <xsl:template match="m:apply[*[1][self::m:floor]]"> <xsl:text>\left\lfloor </xsl:text> <xsl:apply-templates select="*[2]"/> <xsl:text>\right\rfloor </xsl:text> </xsl:template> <!-- 4.4.3.25 ceiling --> <xsl:template match="m:apply[*[1][self::m:ceiling]]"> <xsl:text>\left\lceil </xsl:text> <xsl:apply-templates select="*[2]"/> <xsl:text>\right\rceil </xsl:text> </xsl:template> <!-- 4.4.4.1 eq --> <xsl:template match="m:apply[*[1][self::m:eq]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">=</xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.4.2 neq --> <xsl:template match="m:apply[*[1][self::m:neq]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\neq </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.4.3 gt --> <xsl:template match="m:apply[*[1][self::m:gt]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">&gt; </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.4.4 lt --> <xsl:template match="m:apply[*[1][self::m:lt]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">&lt; </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.4.5 geq --> <xsl:template match="m:apply[*[1][self::m:geq]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\ge </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.4.6 leq --> <xsl:template match="m:apply[*[1][self::m:leq]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\le </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.4.7 equivalent --> <xsl:template match="m:apply[*[1][self::m:equivalent]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\equiv </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.4.8 approx --> <xsl:template match="m:apply[*[1][self::m:approx]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="1"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\approx </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.4.9 factorof --> <xsl:template match="m:apply[*[1][self::m:factorof]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="mo"> | </xsl:with-param> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="this-p" select="3"/> </xsl:call-template> </xsl:template> <!-- 4.4.5.1 int --> <xsl:template match="m:apply[*[1][self::m:int]]"> <xsl:text>\int</xsl:text> <xsl:if test="m:lowlimit/*|m:interval/*[1]|m:condition/*"> <xsl:text>_{</xsl:text> <xsl:apply-templates select="m:lowlimit/*|m:interval/*[1]|m:condition/*"/> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="m:uplimit/*|m:interval/*[2]"> <xsl:text>^{</xsl:text> <xsl:apply-templates select="m:uplimit/*|m:interval/*[2]"/> <xsl:text>}</xsl:text> </xsl:if> <xsl:text> </xsl:text> <xsl:apply-templates select="*[last()]"/> <xsl:text>\,d </xsl:text> <xsl:apply-templates select="m:bvar"/> </xsl:template> <!-- 4.4.5.2 diff --> <xsl:template match="m:apply[*[1][self::m:diff] and m:ci and count(*)=2]" priority="2"> <xsl:apply-templates select="*[2]"/> <xsl:text>^\prime </xsl:text> </xsl:template> <xsl:template match="m:apply[*[1][self::m:diff]]" priority="1"> <xsl:text>\frac{</xsl:text> <xsl:choose> <xsl:when test="m:bvar/m:degree"> <xsl:text>d^{</xsl:text> <xsl:apply-templates select="m:bvar/m:degree/node()"/> <xsl:text>}</xsl:text> <xsl:apply-templates select="*[last()]"/> <xsl:text>}{d</xsl:text> <xsl:apply-templates select="m:bvar/node()"/> <xsl:text>^{</xsl:text> <xsl:apply-templates select="m:bvar/m:degree/node()"/> <xsl:text>}</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>d </xsl:text> <xsl:apply-templates select="*[last()]"/> <xsl:text>}{d </xsl:text> <xsl:apply-templates select="m:bvar"/> <xsl:text>}</xsl:text> </xsl:otherwise> </xsl:choose> <xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.5.3 partialdiff --> <xsl:template match="m:apply[*[1][self::m:partialdiff] and m:list and m:ci and count(*)=3]" priority="2"> <xsl:text>D_{</xsl:text> <xsl:for-each select="m:list[1]/*"> <xsl:apply-templates select="."/> <xsl:if test="position()&lt;last()"><xsl:text>, </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> <xsl:apply-templates select="*[3]"/> </xsl:template> <xsl:template match="m:apply[*[1][self::m:partialdiff]]" priority="1"> <xsl:text>\frac{\partial^{</xsl:text> <xsl:choose> <xsl:when test="m:degree"> <xsl:apply-templates select="m:degree/node()"/> </xsl:when> <xsl:when test="m:bvar/m:degree[string(number(.))='NaN']"> <xsl:for-each select="m:bvar/m:degree"> <xsl:apply-templates select="node()"/> <xsl:if test="position()&lt;last()"><xsl:text>+</xsl:text></xsl:if> </xsl:for-each> <xsl:if test="count(m:bvar[not(m:degree)])&gt;0"> <xsl:text>+</xsl:text> <xsl:value-of select="count(m:bvar[not(m:degree)])"/> </xsl:if> </xsl:when> <xsl:otherwise> <xsl:value-of select="sum(m:bvar/m:degree)+count(m:bvar[not(m:degree)])"/> </xsl:otherwise> </xsl:choose> <xsl:text>}</xsl:text> <xsl:apply-templates select="*[last()]"/> <xsl:text>}{</xsl:text> <xsl:for-each select="m:bvar"> <xsl:text>\partial </xsl:text> <xsl:apply-templates select="node()"/> <xsl:if test="m:degree"> <xsl:text>^{</xsl:text> <xsl:apply-templates select="m:degree/node()"/> <xsl:text>}</xsl:text> </xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.2.8 declare 4.4.5.4 lowlimit 4.4.5.5 uplimit 4.4.5.7 degree 4.4.9.5 momentabout --> <xsl:template match="m:declare | m:lowlimit | m:uplimit | m:degree | m:momentabout"/> <!-- 4.4.5.6 bvar--> <xsl:template match="m:bvar"> <xsl:apply-templates/> <xsl:if test="following-sibling::m:bvar"><xsl:text>, </xsl:text></xsl:if> </xsl:template> <!-- 4.4.5.8 divergence--> <xsl:template match="m:divergence"><xsl:text>\mathop{\mathrm{div}}</xsl:text></xsl:template> <!-- 4.4.5.11 laplacian--> <xsl:template match="m:laplacian"><xsl:text>\nabla^2 </xsl:text></xsl:template> <!-- 4.4.6.1 set --> <xsl:template match="m:set"> <xsl:text>\{</xsl:text><xsl:call-template name="set"/><xsl:text>\}</xsl:text> </xsl:template> <!-- 4.4.6.2 list --> <xsl:template match="m:list"> <xsl:text>\left[</xsl:text><xsl:call-template name="set"/><xsl:text>\right]</xsl:text> </xsl:template> <xsl:template name="set"> <xsl:choose> <xsl:when test="m:condition"> <xsl:apply-templates select="m:bvar/*[not(self::bvar or self::condition)]"/> <xsl:text>\colon </xsl:text> <xsl:apply-templates select="m:condition/node()"/> </xsl:when> <xsl:otherwise> <xsl:for-each select="*"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text>, </xsl:text></xsl:if> </xsl:for-each> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- 4.4.6.3 union --> <xsl:template match="m:apply[*[1][self::m:union]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\cup </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.6.4 intersect --> <xsl:template match="m:apply[*[1][self::m:intersect]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="3"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\cap </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.6.5 in --> <xsl:template match="m:apply[*[1][self::m:in]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="mo">\in </xsl:with-param> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="this-p" select="3"/> </xsl:call-template> </xsl:template> <!-- 4.4.6.5 notin --> <xsl:template match="m:apply[*[1][self::m:notin]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="mo">\notin </xsl:with-param> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="this-p" select="3"/> </xsl:call-template> </xsl:template> <!-- 4.4.6.7 subset --> <xsl:template match="m:apply[*[1][self::m:subset]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\subseteq </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.6.8 prsubset --> <xsl:template match="m:apply[*[1][self::m:prsubset]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\subset </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.6.9 notsubset --> <xsl:template match="m:apply[*[1][self::m:notsubset]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\nsubseteq </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.6.10 notprsubset --> <xsl:template match="m:apply[*[1][self::m:notprsubset]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\not\subset </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.6.11 setdiff --> <xsl:template match="m:apply[*[1][self::m:setdiff]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="binary"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\setminus </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.6.12 card --> <xsl:template match="m:apply[*[1][self::m:card]]"> <xsl:text>|</xsl:text> <xsl:apply-templates select="*[2]"/> <xsl:text>|</xsl:text> </xsl:template> <!-- 4.4.6.13 cartesianproduct 4.4.10.6 vectorproduct --> <xsl:template match="m:apply[*[1][self::m:cartesianproduct or self::m:vectorproduct]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\times </xsl:with-param> </xsl:call-template> </xsl:template> <xsl:template match="m:apply[*[1][self::m:cartesianproduct][count(following-sibling::m:reals)=count(following-sibling::*)]]" priority="2"> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="5"/> </xsl:apply-templates> <xsl:text>^{</xsl:text> <xsl:value-of select="count(*)-1"/> <xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.7.1 sum --> <xsl:template match="m:apply[*[1][self::m:sum]]"> <xsl:text>\sum</xsl:text><xsl:call-template name="series"/> </xsl:template> <!-- 4.4.7.2 product --> <xsl:template match="m:apply[*[1][self::m:product]]"> <xsl:text>\prod</xsl:text><xsl:call-template name="series"/> </xsl:template> <xsl:template name="series"> <xsl:if test="m:lowlimit/*|m:interval/*[1]|m:condition/*"> <xsl:text>_{</xsl:text> <xsl:if test="not(m:condition)"> <xsl:apply-templates select="m:bvar"/> <xsl:text>=</xsl:text> </xsl:if> <xsl:apply-templates select="m:lowlimit/*|m:interval/*[1]|m:condition/*"/> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="m:uplimit/*|m:interval/*[2]"> <xsl:text>^{</xsl:text> <xsl:apply-templates select="m:uplimit/*|m:interval/*[2]"/> <xsl:text>}</xsl:text> </xsl:if> <xsl:text> </xsl:text> <xsl:apply-templates select="*[last()]"/> </xsl:template> <!-- 4.4.7.3 limit --> <xsl:template match="m:apply[*[1][self::m:limit]]"> <xsl:text>\lim_{</xsl:text> <xsl:apply-templates select="m:lowlimit|m:condition/*"/> <xsl:text>}</xsl:text> <xsl:apply-templates select="*[last()]"/> </xsl:template> <xsl:template match="m:apply[m:limit]/m:lowlimit" priority="3"> <xsl:apply-templates select="../m:bvar/node()"/> <xsl:text>\to </xsl:text> <xsl:apply-templates/> </xsl:template> <!-- 4.4.7.4 tendsto --> <xsl:template match="m:apply[*[1][self::m:tendsto]]"> <xsl:param name="p"/> <xsl:call-template name="binary"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo"> <xsl:choose> <xsl:when test="@type='above'">\searrow </xsl:when> <xsl:when test="@type='below'">\nearrow </xsl:when> <xsl:when test="@type='two-sided'">\rightarrow </xsl:when> <xsl:otherwise>\to </xsl:otherwise> </xsl:choose> </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.8.1 common tringonometric functions 4.4.8.3 natural logarithm --> <xsl:template match="m:apply[*[1][ self::m:sin or self::m:cos or self::m:tan or self::m:sec or self::m:csc or self::m:cot or self::m:sinh or self::m:cosh or self::m:tanh or self::m:coth or self::m:arcsin or self::m:arccos or self::m:arctan or self::m:ln]]"> <xsl:text>\</xsl:text> <xsl:value-of select="local-name(*[1])"/> <xsl:text> </xsl:text> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> </xsl:template> <xsl:template match="m:sin | m:cos | m:tan | m:sec | m:csc | m:cot | m:sinh | m:cosh | m:tanh | m:coth | m:arcsin | m:arccos | m:arctan | m:ln"> <xsl:text>\</xsl:text> <xsl:value-of select="local-name(.)"/> <xsl:text> </xsl:text> </xsl:template> <xsl:template match="m:apply[*[1][ self::m:sech or self::m:csch or self::m:arccosh or self::m:arccot or self::m:arccoth or self::m:arccsc or self::m:arccsch or self::m:arcsec or self::m:arcsech or self::m:arcsinh or self::m:arctanh]]"> <xsl:text>\mathrm{</xsl:text> <xsl:value-of select="local-name(*[1])"/> <xsl:text>\,}</xsl:text> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> </xsl:template> <xsl:template match="m:sech | m:csch | m:arccosh | m:arccot | m:arccoth | m:arccsc |m:arccsch |m:arcsec | m:arcsech | m:arcsinh | m:arctanh"> <xsl:text>\mathrm{</xsl:text> <xsl:value-of select="local-name(.)"/> <xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.8.2 exp --> <xsl:template match="m:apply[*[1][self::m:exp]]"> <xsl:text>e^{</xsl:text><xsl:apply-templates select="*[2]"/><xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.8.4 log --> <xsl:template match="m:apply[*[1][self::m:log]]"> <xsl:text>\lg </xsl:text> <xsl:apply-templates select="*[last()]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> </xsl:template> <xsl:template match="m:apply[*[1][self::m:log] and m:logbase != 10]"> <xsl:text>\log_{</xsl:text> <xsl:apply-templates select="m:logbase/node()"/> <xsl:text>}</xsl:text> <xsl:apply-templates select="*[last()]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> </xsl:template> <!-- 4.4.9.1 mean --> <xsl:template match="m:apply[*[1][self::m:mean]]"> <xsl:text>\left\langle </xsl:text> <xsl:for-each select="*[position()&gt;1]"> <xsl:apply-templates select="."/> <xsl:if test="position() !=last()"><xsl:text>, </xsl:text></xsl:if> </xsl:for-each> <xsl:text>\right\rangle </xsl:text> </xsl:template> <!-- 4.4.9.2 sdef --> <xsl:template match="m:sdev"><xsl:text>\sigma </xsl:text></xsl:template> <!-- 4.4.9.3 variance --> <xsl:template match="m:apply[*[1][self::m:variance]]"> <xsl:text>\sigma(</xsl:text> <xsl:apply-templates select="*[2]"/> <xsl:text>)^2</xsl:text> </xsl:template> <!-- 4.4.9.5 moment --> <xsl:template match="m:apply[*[1][self::m:moment]]"> <xsl:text>\left\langle </xsl:text> <xsl:apply-templates select="*[last()]"/> <xsl:text>^{</xsl:text> <xsl:apply-templates select="m:degree/node()"/> <xsl:text>}\right\rangle</xsl:text> <xsl:if test="m:momentabout"> <xsl:text>_{</xsl:text> <xsl:apply-templates select="m:momentabout/node()"/> <xsl:text>}</xsl:text> </xsl:if> <xsl:text> </xsl:text> </xsl:template> <!-- 4.4.10.1 vector --> <xsl:template match="m:vector"> <xsl:text>\left(\begin{array}{c}</xsl:text> <xsl:for-each select="*"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text>\\ </xsl:text></xsl:if> </xsl:for-each> <xsl:text>\end{array}\right)</xsl:text> </xsl:template> <!-- 4.4.10.2 matrix --> <xsl:template match="m:matrix"> <xsl:text>\begin{pmatrix}</xsl:text> <xsl:apply-templates/> <xsl:text>\end{pmatrix}</xsl:text> </xsl:template> <!-- 4.4.10.3 matrixrow --> <xsl:template match="m:matrixrow"> <xsl:for-each select="*"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text> &amp; </xsl:text></xsl:if> </xsl:for-each> <xsl:if test="position()!=last()"><xsl:text>\\ </xsl:text></xsl:if> </xsl:template> <!-- 4.4.10.4 determinant --> <xsl:template match="m:apply[*[1][self::m:determinant]]"> <xsl:text>\det </xsl:text> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> </xsl:template> <xsl:template match="m:apply[*[1][self::m:determinant]][*[2][self::m:matrix]]" priority="2"> <xsl:text>\begin{vmatrix}</xsl:text> <xsl:apply-templates select="m:matrix/*"/> <xsl:text>\end{vmatrix}</xsl:text> </xsl:template> <!-- 4.4.10.5 transpose --> <xsl:template match="m:apply[*[1][self::m:transpose]]"> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> <xsl:text>^T</xsl:text> </xsl:template> <!-- 4.4.10.5 selector --> <xsl:template match="m:apply[*[1][self::m:selector]]"> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="7"/> </xsl:apply-templates> <xsl:text>_{</xsl:text> <xsl:for-each select="*[position()&gt;2]"> <xsl:apply-templates select="."/> <xsl:if test="position() !=last()"><xsl:text>, </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:template> <!-- 4.4.10.7 scalarproduct 4.4.10.8 outerproduct --> <xsl:template match="m:apply[*[1][self::m:scalarproduct or self::m:outerproduct]]"> <xsl:param name="p" select="0"/> <xsl:call-template name="infix"> <xsl:with-param name="this-p" select="2"/> <xsl:with-param name="p" select="$p"/> <xsl:with-param name="mo">\dot </xsl:with-param> </xsl:call-template> </xsl:template> <!-- 4.4.11.2 semantics --> <xsl:template match="m:semantics"><xsl:apply-templates select="*[1]"/></xsl:template> <xsl:template match="m:semantics[m:annotation/@encoding='TeX']"> <xsl:apply-templates select="m:annotation[@encoding='TeX']/node()"/> </xsl:template> <!-- 4.4.12.1 integers --> <xsl:template match="m:integers"><xsl:text>\mathbb{Z}</xsl:text></xsl:template> <!-- 4.4.12.2 reals --> <xsl:template match="m:reals"><xsl:text>\mathbb{R}</xsl:text></xsl:template> <!-- 4.4.12.3 rationals --> <xsl:template match="m:rationals"><xsl:text>\mathbb{Q}</xsl:text></xsl:template> <!-- 4.4.12.4 naturalnumbers --> <xsl:template match="m:naturalnumbers"><xsl:text>\mathbb{N}</xsl:text></xsl:template> <!-- 4.4.12.5 complexes --> <xsl:template match="m:complexes"><xsl:text>\mathbb{C}</xsl:text></xsl:template> <!-- 4.4.12.6 primes --> <xsl:template match="m:primes"><xsl:text>\mathbb{P}</xsl:text></xsl:template> <!-- 4.4.12.7 exponentiale --> <xsl:template match="m:exponentiale"><xsl:text>e</xsl:text></xsl:template> <!-- 4.4.12.8 imaginaryi --> <xsl:template match="m:imaginaryi"><xsl:text>i</xsl:text></xsl:template> <!-- 4.4.12.9 notanumber --> <xsl:template match="m:notanumber"><xsl:text>NaN</xsl:text></xsl:template> <!-- 4.4.12.10 true --> <xsl:template match="m:true"><xsl:text>\mbox{true}</xsl:text></xsl:template> <!-- 4.4.12.11 false --> <xsl:template match="m:false"><xsl:text>\mbox{false}</xsl:text></xsl:template> <!-- 4.4.12.12 emptyset --> <xsl:template match="m:emptyset"><xsl:text>\emptyset </xsl:text></xsl:template> <!-- 4.4.12.13 pi --> <xsl:template match="m:pi"><xsl:text>\pi </xsl:text></xsl:template> <!-- 4.4.12.14 eulergamma --> <xsl:template match="m:eulergamma"><xsl:text>\gamma </xsl:text></xsl:template> <!-- 4.4.12.15 infinity --> <xsl:template match="m:infinity"><xsl:text>\infty </xsl:text></xsl:template> <!-- ****************************** --> <xsl:template name="infix" > <xsl:param name="mo"/> <xsl:param name="p" select="0"/> <xsl:param name="this-p" select="0"/> <xsl:if test="$this-p &lt; $p"><xsl:text>(</xsl:text></xsl:if> <xsl:for-each select="*[position()&gt;1]"> <xsl:if test="position() &gt; 1"> <xsl:copy-of select="$mo"/> </xsl:if> <xsl:apply-templates select="."> <xsl:with-param name="p" select="$this-p"/> </xsl:apply-templates> </xsl:for-each> <xsl:if test="$this-p &lt; $p"><xsl:text>)</xsl:text></xsl:if> </xsl:template> <xsl:template name="binary" > <xsl:param name="mo"/> <xsl:param name="p" select="0"/> <xsl:param name="this-p" select="0"/> <xsl:if test="$this-p &lt; $p"><xsl:text>(</xsl:text></xsl:if> <xsl:apply-templates select="*[2]"> <xsl:with-param name="p" select="$this-p"/> </xsl:apply-templates> <xsl:value-of select="$mo"/> <xsl:apply-templates select="*[3]"> <xsl:with-param name="p" select="$this-p"/> </xsl:apply-templates> <xsl:if test="$this-p &lt; $p"><xsl:text>)</xsl:text></xsl:if> </xsl:template> <!-- ====================================================================== --> <!-- $id: entities.xsl, 2002/22/11 Exp $ This file is part of the XSLT MathML Library distribution. See ./README or http://www.raleigh.ru/MathML/mmltex for copyright and other information --> <!-- ====================================================================== --> <xsl:template name="replaceEntities"> <xsl:param name="content"/> <xsl:if test="string-length($content)>0"> <xsl:choose> <xsl:when test="starts-with($content,'&#x0025B;')"><xsl:value-of select="'\varepsilon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0025B;')"/></xsl:call-template></xsl:when> <!--/varepsilon --> <!-- ====================================================================== --> <!-- Unicode 3.2 Greek Range: 0370-03FF http://www.unicode.org/charts/PDF/U0370.pdf --> <!-- ====================================================================== --> <xsl:when test="starts-with($content,'&#x00393;')"><xsl:value-of select="'\Gamma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x00393;')"/></xsl:call-template></xsl:when> <!--/Gamma capital Gamma, Greek --> <xsl:when test="starts-with($content,'&#x00394;')"><xsl:value-of select="'\Delta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x00394;')"/></xsl:call-template></xsl:when> <!--/Delta capital Delta, Greek --> <xsl:when test="starts-with($content,'&#x00398;')"><xsl:value-of select="'\Theta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x00398;')"/></xsl:call-template></xsl:when> <!--/Theta capital Theta, Greek --> <xsl:when test="starts-with($content,'&#x0039B;')"><xsl:value-of select="'\Lambda '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0039B;')"/></xsl:call-template></xsl:when> <!--/Lambda capital Lambda, Greek --> <xsl:when test="starts-with($content,'&#x0039E;')"><xsl:value-of select="'\Xi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0039E;')"/></xsl:call-template></xsl:when> <!--/Xi capital Xi, Greek --> <xsl:when test="starts-with($content,'&#x003A0;')"><xsl:value-of select="'\Pi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003A0;')"/></xsl:call-template></xsl:when> <!--/Pi capital Pi, Greek --> <xsl:when test="starts-with($content,'&#x003A3;')"><xsl:value-of select="'\Sigma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003A3;')"/></xsl:call-template></xsl:when> <!--/Sigma capital Sigma, Greek --> <xsl:when test="starts-with($content,'&#x003A6;')"><xsl:value-of select="'\Phi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003A6;')"/></xsl:call-template></xsl:when> <!--/Phi capital Phi, Greek --> <xsl:when test="starts-with($content,'&#x003A8;')"><xsl:value-of select="'\Psi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003A8;')"/></xsl:call-template></xsl:when> <!--/Psi capital Psi, Greek --> <xsl:when test="starts-with($content,'&#x003A9;')"><xsl:value-of select="'\Omega '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003A9;')"/></xsl:call-template></xsl:when> <!--/Omega capital Omega, Greek --> <xsl:when test="starts-with($content,'&#x003B1;')"><xsl:value-of select="'\alpha '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B1;')"/></xsl:call-template></xsl:when> <!--/alpha small alpha, Greek --> <xsl:when test="starts-with($content,'&#x003B2;')"><xsl:value-of select="'\beta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B2;')"/></xsl:call-template></xsl:when> <!--/beta small beta, Greek --> <xsl:when test="starts-with($content,'&#x003B3;')"><xsl:value-of select="'\gamma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B3;')"/></xsl:call-template></xsl:when> <!--/gamma small gamma, Greek --> <xsl:when test="starts-with($content,'&#x003B4;')"><xsl:value-of select="'\delta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B4;')"/></xsl:call-template></xsl:when> <!--/delta small delta, Greek --> <xsl:when test="starts-with($content,'&#x003B5;')"><xsl:value-of select="'\epsilon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B5;')"/></xsl:call-template></xsl:when> <!--/straightepsilon, small epsilon, Greek --> <xsl:when test="starts-with($content,'&#x003B6;')"><xsl:value-of select="'\zeta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B6;')"/></xsl:call-template></xsl:when> <!--/zeta small zeta, Greek --> <xsl:when test="starts-with($content,'&#x003B7;')"><xsl:value-of select="'\eta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B7;')"/></xsl:call-template></xsl:when> <!--/eta small eta, Greek --> <xsl:when test="starts-with($content,'&#x003B8;')"><xsl:value-of select="'\theta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B8;')"/></xsl:call-template></xsl:when> <!--/theta straight theta, small theta, Greek --> <xsl:when test="starts-with($content,'&#x003B9;')"><xsl:value-of select="'\iota '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003B9;')"/></xsl:call-template></xsl:when> <!--/iota small iota, Greek --> <xsl:when test="starts-with($content,'&#x003BA;')"><xsl:value-of select="'\kappa '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003BA;')"/></xsl:call-template></xsl:when> <!--/kappa small kappa, Greek --> <xsl:when test="starts-with($content,'&#x003BB;')"><xsl:value-of select="'\lambda '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003BB;')"/></xsl:call-template></xsl:when> <!--/lambda small lambda, Greek --> <xsl:when test="starts-with($content,'&#x003BC;')"><xsl:value-of select="'\mu '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003BC;')"/></xsl:call-template></xsl:when> <!--/mu small mu, Greek --> <xsl:when test="starts-with($content,'&#x003BD;')"><xsl:value-of select="'\nu '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003BD;')"/></xsl:call-template></xsl:when> <!--/nu small nu, Greek --> <xsl:when test="starts-with($content,'&#x003BE;')"><xsl:value-of select="'\xi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003BE;')"/></xsl:call-template></xsl:when> <!--/xi small xi, Greek --> <xsl:when test="starts-with($content,'&#x003C0;')"><xsl:value-of select="'\pi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C0;')"/></xsl:call-template></xsl:when> <!--/pi small pi, Greek --> <xsl:when test="starts-with($content,'&#x003C1;')"><xsl:value-of select="'\rho '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C1;')"/></xsl:call-template></xsl:when> <!--/rho small rho, Greek --> <xsl:when test="starts-with($content,'&#x003C2;')"><xsl:value-of select="'\varsigma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C2;')"/></xsl:call-template></xsl:when> <!--/varsigma --> <xsl:when test="starts-with($content,'&#x003C3;')"><xsl:value-of select="'\sigma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C3;')"/></xsl:call-template></xsl:when> <!--/sigma small sigma, Greek --> <xsl:when test="starts-with($content,'&#x003C4;')"><xsl:value-of select="'\tau '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C4;')"/></xsl:call-template></xsl:when> <!--/tau small tau, Greek --> <xsl:when test="starts-with($content,'&#x003C5;')"><xsl:value-of select="'\upsilon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C5;')"/></xsl:call-template></xsl:when> <!--/upsilon small upsilon, Greek --> <xsl:when test="starts-with($content,'&#x003C6;')"><xsl:value-of select="'\phi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C6;')"/></xsl:call-template></xsl:when> <!--/straightphi - small phi, Greek --> <xsl:when test="starts-with($content,'&#x003C7;')"><xsl:value-of select="'\chi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C7;')"/></xsl:call-template></xsl:when> <!--/chi small chi, Greek --> <xsl:when test="starts-with($content,'&#x003C8;')"><xsl:value-of select="'\psi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C8;')"/></xsl:call-template></xsl:when> <!--/psi small psi, Greek --> <xsl:when test="starts-with($content,'&#x003C9;')"><xsl:value-of select="'\omega '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003C9;')"/></xsl:call-template></xsl:when> <!--/omega small omega, Greek --> <xsl:when test="starts-with($content,'&#x003D1;')"><xsl:value-of select="'\vartheta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003D1;')"/></xsl:call-template></xsl:when> <!--/vartheta - curly or open theta --> <xsl:when test="starts-with($content,'&#x003D2;')"><xsl:value-of select="'\Upsilon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003D2;')"/></xsl:call-template></xsl:when> <!--/Upsilon capital Upsilon, Greek --> <xsl:when test="starts-with($content,'&#x003D5;')"><xsl:value-of select="'\varphi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003D5;')"/></xsl:call-template></xsl:when> <!--/varphi - curly or open phi --> <xsl:when test="starts-with($content,'&#x003D6;')"><xsl:value-of select="'\varpi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003D6;')"/></xsl:call-template></xsl:when> <!--/varpi --> <xsl:when test="starts-with($content,'&#x003F0;')"><xsl:value-of select="'\varkappa '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003F0;')"/></xsl:call-template></xsl:when> <!--/varkappa --> <xsl:when test="starts-with($content,'&#x003F1;')"><xsl:value-of select="'\varrho '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x003F1;')"/></xsl:call-template></xsl:when> <!--/varrho --> <!-- ====================================================================== --> <xsl:when test="starts-with($content,'&#x0200B;')"><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0200B;')"/></xsl:call-template></xsl:when> <!--short form of &InvisibleComma; --> <xsl:when test="starts-with($content,'&#x02026;')"><xsl:value-of select="'\dots '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02026;')"/></xsl:call-template></xsl:when> <xsl:when test="starts-with($content,'&#x02032;')"><xsl:value-of select="'\prime '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02032;')"/></xsl:call-template></xsl:when> <!--/prime prime or minute --> <xsl:when test="starts-with($content,'&#x02061;')"><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02061;')"/></xsl:call-template></xsl:when> <!-- ApplyFunction --> <xsl:when test="starts-with($content,'&#x02062;')"><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02062;')"/></xsl:call-template></xsl:when> <!-- InvisibleTimes --> <!-- ====================================================================== --> <!-- Unicode 3.2 Letterlike Symbols Range: 2100-214F http://www.unicode.org/charts/PDF/U2100.pdf --> <!-- ====================================================================== --> <xsl:when test="starts-with($content,'&#x0210F;&#x0FE00;')"><xsl:value-of select="'\hbar '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0210F;&#x0FE00;')"/></xsl:call-template></xsl:when> <!--/hbar - Planck's over 2pi --> <xsl:when test="starts-with($content,'&#x0210F;')"><xsl:value-of select="'\hslash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0210F;')"/></xsl:call-template></xsl:when> <!--/hslash - variant Planck's over 2pi --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02111;')"><xsl:value-of select="'\Im '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02111;')"/></xsl:call-template></xsl:when> <!--/Im - imaginary --> <xsl:when test="starts-with($content,'&#x02113;')"><xsl:value-of select="'\ell '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02113;')"/></xsl:call-template></xsl:when> <!--/ell - cursive small l --> <xsl:when test="starts-with($content,'&#x02118;')"><xsl:value-of select="'\wp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02118;')"/></xsl:call-template></xsl:when> <!--/wp - Weierstrass p --> <xsl:when test="starts-with($content,'&#x0211C;')"><xsl:value-of select="'\Re '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0211C;')"/></xsl:call-template></xsl:when> <!--/Re - real --> <xsl:when test="starts-with($content,'&#x02127;')"><xsl:value-of select="'\mho '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02127;')"/></xsl:call-template></xsl:when> <!--/mho - conductance --> <xsl:when test="starts-with($content,'&#x02135;')"><xsl:value-of select="'\aleph '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02135;')"/></xsl:call-template></xsl:when> <!--/aleph aleph, Hebrew --> <xsl:when test="starts-with($content,'&#x02136;')"><xsl:value-of select="'\beth '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02136;')"/></xsl:call-template></xsl:when> <!--/beth - beth, Hebrew --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02137;')"><xsl:value-of select="'\gimel '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02137;')"/></xsl:call-template></xsl:when> <!--/gimel - gimel, Hebrew --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02138;')"><xsl:value-of select="'\daleth '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02138;')"/></xsl:call-template></xsl:when> <!--/daleth - daleth, Hebrew --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02145;')"><xsl:value-of select="'D'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02145;')"/></xsl:call-template></xsl:when> <!--D for use in differentials, e.g., within integrals --> <xsl:when test="starts-with($content,'&#x02146;')"><xsl:value-of select="'d'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02146;')"/></xsl:call-template></xsl:when> <!--d for use in differentials, e.g., within integrals --> <xsl:when test="starts-with($content,'&#x02147;')"><xsl:value-of select="'e'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02147;')"/></xsl:call-template></xsl:when> <!--e use for the exponential base of the natural logarithms --> <xsl:when test="starts-with($content,'&#x02148;')"><xsl:value-of select="'i'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02148;')"/></xsl:call-template></xsl:when> <!--i for use as a square root of -1 --> <!-- ====================================================================== --> <xsl:when test="starts-with($content,'&#x02192;')"><xsl:value-of select="'\to '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02192;')"/></xsl:call-template></xsl:when> <!--/rightarrow /to A: =rightward arrow --> <!-- ====================================================================== --> <!-- Unicode 3.2 Mathematical Operators Range: 2200-22FF http://www.unicode.org/charts/PDF/U2200.pdf --> <!-- ====================================================================== --> <xsl:when test="starts-with($content,'&#x02200;')"><xsl:value-of select="'\forall '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02200;')"/></xsl:call-template></xsl:when> <!--/forall for all --> <xsl:when test="starts-with($content,'&#x02201;')"><xsl:value-of select="'\complement '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02201;')"/></xsl:call-template></xsl:when> <!--/complement - complement sign --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02202;')"><xsl:value-of select="'\partial '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02202;')"/></xsl:call-template></xsl:when> <!--/partial partial differential --> <xsl:when test="starts-with($content,'&#x02203;')"><xsl:value-of select="'\exists '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02203;')"/></xsl:call-template></xsl:when> <!--/exists at least one exists --> <xsl:when test="starts-with($content,'&#x02204;')"><xsl:value-of select="'\nexists '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02204;')"/></xsl:call-template></xsl:when> <!--/nexists - negated exists --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02205;&#x0FE00;')"><xsl:value-of select="'\emptyset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02205;&#x0FE00;')"/></xsl:call-template></xsl:when> <!--/emptyset - zero, slash --> <xsl:when test="starts-with($content,'&#x02205;')"><xsl:value-of select="'\varnothing '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02205;')"/></xsl:call-template></xsl:when> <!--/varnothing - circle, slash --> <!-- Required amssymb --> <!-- <xsl:when test="starts-with($content,'&#x02206;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02206;')"/></xsl:call-template></xsl:when>--> <xsl:when test="starts-with($content,'&#x02207;')"><xsl:value-of select="'\nabla '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02207;')"/></xsl:call-template></xsl:when> <!--/nabla del, Hamilton operator --> <xsl:when test="starts-with($content,'&#x02208;')"><xsl:value-of select="'\in '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02208;')"/></xsl:call-template></xsl:when> <!--/in R: set membership --> <xsl:when test="starts-with($content,'&#x02209;')"><xsl:value-of select="'\notin '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02209;')"/></xsl:call-template></xsl:when> <!--/notin N: negated set membership --> <xsl:when test="starts-with($content,'&#x0220B;')"><xsl:value-of select="'\ni '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0220B;')"/></xsl:call-template></xsl:when> <!--/ni /owns R: contains --> <xsl:when test="starts-with($content,'&#x0220C;')"><xsl:value-of select="'\not\ni '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0220C;')"/></xsl:call-template></xsl:when> <!--negated contains --> <xsl:when test="starts-with($content,'&#x0220F;')"><xsl:value-of select="'\prod '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0220F;')"/></xsl:call-template></xsl:when> <!--/prod L: product operator --> <xsl:when test="starts-with($content,'&#x02210;')"><xsl:value-of select="'\coprod '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02210;')"/></xsl:call-template></xsl:when> <!--/coprod L: coproduct operator --> <xsl:when test="starts-with($content,'&#x02211;')"><xsl:value-of select="'\sum '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02211;')"/></xsl:call-template></xsl:when> <!--/sum L: summation operator --> <xsl:when test="starts-with($content,'&#x02212;')"><xsl:value-of select="'-'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02212;')"/></xsl:call-template></xsl:when> <!--B: minus sign --> <xsl:when test="starts-with($content,'&#x02213;')"><xsl:value-of select="'\mp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02213;')"/></xsl:call-template></xsl:when> <!--/mp B: minus-or-plus sign --> <xsl:when test="starts-with($content,'&#x02214;')"><xsl:value-of select="'\dotplus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02214;')"/></xsl:call-template></xsl:when> <!--/dotplus B: plus sign, dot above --> <!-- Required amssymb --> <!-- <xsl:when test="starts-with($content,'&#x02215;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02215;')"/></xsl:call-template></xsl:when>--> <xsl:when test="starts-with($content,'&#x02216;')"><xsl:value-of select="'\setminus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02216;')"/></xsl:call-template></xsl:when> <!--/setminus B: reverse solidus --> <xsl:when test="starts-with($content,'&#x02217;')"><xsl:value-of select="'\ast '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02217;')"/></xsl:call-template></xsl:when> <!--low asterisk --> <xsl:when test="starts-with($content,'&#x02218;')"><xsl:value-of select="'\circ '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02218;')"/></xsl:call-template></xsl:when> <!--/circ B: composite function (small circle) --> <xsl:when test="starts-with($content,'&#x02219;')"><xsl:value-of select="'\bullet '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02219;')"/></xsl:call-template></xsl:when> <xsl:when test="starts-with($content,'&#x0221A;')"><xsl:value-of select="'\surd '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0221A;')"/></xsl:call-template></xsl:when> <!--/surd radical --> <xsl:when test="starts-with($content,'&#x0221D;')"><xsl:value-of select="'\propto '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0221D;')"/></xsl:call-template></xsl:when> <!--/propto R: is proportional to --> <xsl:when test="starts-with($content,'&#x0221E;')"><xsl:value-of select="'\infty '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0221E;')"/></xsl:call-template></xsl:when> <!--/infty infinity --> <!-- <xsl:when test="starts-with($content,'&#x0221F;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0221F;')"/></xsl:call-template></xsl:when> right (90 degree) angle --> <xsl:when test="starts-with($content,'&#x02220;')"><xsl:value-of select="'\angle '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02220;')"/></xsl:call-template></xsl:when> <!--/angle - angle --> <xsl:when test="starts-with($content,'&#x02221;')"><xsl:value-of select="'\measuredangle '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02221;')"/></xsl:call-template></xsl:when> <!--/measuredangle - angle-measured --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02222;')"><xsl:value-of select="'\sphericalangle '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02222;')"/></xsl:call-template></xsl:when><!--/sphericalangle angle-spherical --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02223;')"><xsl:value-of select="'\mid '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02223;')"/></xsl:call-template></xsl:when> <!--/mid R: --> <xsl:when test="starts-with($content,'&#x02224;&#x0FE00;')"><xsl:value-of select="'\nshortmid '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02224;&#x0FE00;')"/></xsl:call-template></xsl:when> <!--/nshortmid --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02224;')"><xsl:value-of select="'\nmid '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02224;')"/></xsl:call-template></xsl:when> <!--/nmid --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02225;')"><xsl:value-of select="'\parallel '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02225;')"/></xsl:call-template></xsl:when> <!--/parallel R: parallel --> <xsl:when test="starts-with($content,'&#x02226;&#x0FE00;')"><xsl:value-of select="'\nshortparallel '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02226;&#x0FE00;')"/></xsl:call-template></xsl:when> <!--/nshortparallel N: not short par --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02226;')"><xsl:value-of select="'\nparallel '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02226;')"/></xsl:call-template></xsl:when> <!--/nparallel N: not parallel --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02227;')"><xsl:value-of select="'\wedge '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02227;')"/></xsl:call-template></xsl:when> <!--/wedge /land B: logical and --> <xsl:when test="starts-with($content,'&#x02228;')"><xsl:value-of select="'\vee '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02228;')"/></xsl:call-template></xsl:when> <!--/vee /lor B: logical or --> <xsl:when test="starts-with($content,'&#x02229;')"><xsl:value-of select="'\cap '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02229;')"/></xsl:call-template></xsl:when> <!--/cap B: intersection --> <xsl:when test="starts-with($content,'&#x0222A;')"><xsl:value-of select="'\cup '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0222A;')"/></xsl:call-template></xsl:when> <!--/cup B: union or logical sum --> <xsl:when test="starts-with($content,'&#x0222B;')"><xsl:value-of select="'\int '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0222B;')"/></xsl:call-template></xsl:when> <!--/int L: integral operator --> <xsl:when test="starts-with($content,'&#x0222C;')"><xsl:value-of select="'\iint '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0222C;')"/></xsl:call-template></xsl:when> <!--double integral operator --> <!-- Required amsmath --> <xsl:when test="starts-with($content,'&#x0222D;')"><xsl:value-of select="'\iiint '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0222D;')"/></xsl:call-template></xsl:when> <!--/iiint triple integral operator --> <!-- Required amsmath --> <xsl:when test="starts-with($content,'&#x0222E;')"><xsl:value-of select="'\oint '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0222E;')"/></xsl:call-template></xsl:when> <!--/oint L: contour integral operator --> <!-- <xsl:when test="starts-with($content,'&#x0222F;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0222F;')"/></xsl:call-template></xsl:when>--> <!-- <xsl:when test="starts-with($content,'&#x02230;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02230;')"/></xsl:call-template></xsl:when>--> <!-- <xsl:when test="starts-with($content,'&#x02231;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02231;')"/></xsl:call-template></xsl:when>--> <!-- <xsl:when test="starts-with($content,'&#x02232;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02232;')"/></xsl:call-template></xsl:when>--> <!-- <xsl:when test="starts-with($content,'&#x02233;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02233;')"/></xsl:call-template></xsl:when>--> <xsl:when test="starts-with($content,'&#x02234;')"><xsl:value-of select="'\therefore '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02234;')"/></xsl:call-template></xsl:when> <!--/therefore R: therefore --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02235;')"><xsl:value-of select="'\because '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02235;')"/></xsl:call-template></xsl:when> <!--/because R: because --> <!-- Required amssymb --> <!-- ? --> <xsl:when test="starts-with($content,'&#x02236;')"><xsl:value-of select="':'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02236;')"/></xsl:call-template></xsl:when> <!--/ratio --> <!-- ? --> <xsl:when test="starts-with($content,'&#x02237;')"><xsl:value-of select="'\colon\colon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02237;')"/></xsl:call-template></xsl:when> <!--/Colon, two colons --> <!-- ? --> <xsl:when test="starts-with($content,'&#x02238;')"><xsl:value-of select="'\dot{-}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02238;')"/></xsl:call-template></xsl:when> <!--/dotminus B: minus sign, dot above --> <!-- <xsl:when test="starts-with($content,'&#x02239;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02239;')"/></xsl:call-template></xsl:when> --> <!-- <xsl:when test="starts-with($content,'&#x0223A;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0223A;')"/></xsl:call-template></xsl:when> minus with four dots, geometric properties --> <!-- <xsl:when test="starts-with($content,'&#x0223B;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0223B;')"/></xsl:call-template></xsl:when> homothetic --> <xsl:when test="starts-with($content,'&#x0223C;')"><xsl:value-of select="'\sim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0223C;')"/></xsl:call-template></xsl:when> <!--/sim R: similar --> <xsl:when test="starts-with($content,'&#x0223D;')"><xsl:value-of select="'\backsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0223D;')"/></xsl:call-template></xsl:when> <!--/backsim R: reverse similar --> <!-- Required amssymb --> <!-- <xsl:when test="starts-with($content,'&#x0223E;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0223E;')"/></xsl:call-template></xsl:when> most positive --> <!-- <xsl:when test="starts-with($content,'&#x0223F;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0223F;')"/></xsl:call-template></xsl:when> ac current --> <xsl:when test="starts-with($content,'&#x02240;')"><xsl:value-of select="'\wr '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02240;')"/></xsl:call-template></xsl:when> <!--/wr B: wreath product --> <xsl:when test="starts-with($content,'&#x02241;')"><xsl:value-of select="'\nsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02241;')"/></xsl:call-template></xsl:when> <!--/nsim N: not similar --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02242;')"><xsl:value-of select="'\eqsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02242;')"/></xsl:call-template></xsl:when> <!--/esim R: equals, similar --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02243;')"><xsl:value-of select="'\simeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02243;')"/></xsl:call-template></xsl:when> <!--/simeq R: similar, equals --> <xsl:when test="starts-with($content,'&#x02244;')"><xsl:value-of select="'\not\simeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02244;')"/></xsl:call-template></xsl:when> <!--/nsimeq N: not similar, equals --> <xsl:when test="starts-with($content,'&#x02245;')"><xsl:value-of select="'\cong '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02245;')"/></xsl:call-template></xsl:when> <!--/cong R: congruent with --> <!-- <xsl:when test="starts-with($content,'&#x02246;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02246;')"/></xsl:call-template></xsl:when> similar, not equals --> <xsl:when test="starts-with($content,'&#x02247;')"><xsl:value-of select="'\ncong '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02247;')"/></xsl:call-template></xsl:when> <!--/ncong N: not congruent with --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02248;')"><xsl:value-of select="'\approx '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02248;')"/></xsl:call-template></xsl:when> <!--/approx R: approximate --> <!-- <xsl:when test="starts-with($content,'&#x02249;&#x00338;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02249;&#x00338;')"/></xsl:call-template></xsl:when> not, vert, approximate --> <xsl:when test="starts-with($content,'&#x02249;')"><xsl:value-of select="'\not\approx '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02249;')"/></xsl:call-template></xsl:when> <!--/napprox N: not approximate --> <xsl:when test="starts-with($content,'&#x0224A;')"><xsl:value-of select="'\approxeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0224A;')"/></xsl:call-template></xsl:when> <!--/approxeq R: approximate, equals --> <!-- Required amssymb --> <!-- <xsl:when test="starts-with($content,'&#x0224B;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0224B;')"/></xsl:call-template></xsl:when> approximately identical to --> <!-- <xsl:when test="starts-with($content,'&#x0224C;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0224C;')"/></xsl:call-template></xsl:when> /backcong R: reverse congruent --> <xsl:when test="starts-with($content,'&#x0224D;')"><xsl:value-of select="'\asymp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0224D;')"/></xsl:call-template></xsl:when> <!--/asymp R: asymptotically equal to --> <xsl:when test="starts-with($content,'&#x0224E;')"><xsl:value-of select="'\Bumpeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0224E;')"/></xsl:call-template></xsl:when> <!--/Bumpeq R: bumpy equals --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x0224F;')"><xsl:value-of select="'\bumpeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0224F;')"/></xsl:call-template></xsl:when> <!--/bumpeq R: bumpy equals, equals --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02250;')"><xsl:value-of select="'\doteq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02250;')"/></xsl:call-template></xsl:when> <!--/doteq R: equals, single dot above --> <xsl:when test="starts-with($content,'&#x02251;')"><xsl:value-of select="'\doteqdot '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02251;')"/></xsl:call-template></xsl:when> <!--/doteqdot /Doteq R: eq, even dots --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02252;')"><xsl:value-of select="'\fallingdotseq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02252;')"/></xsl:call-template></xsl:when> <!--/fallingdotseq R: eq, falling dots --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02253;')"><xsl:value-of select="'\risingdotseq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02253;')"/></xsl:call-template></xsl:when> <!--/risingdotseq R: eq, rising dots --> <!-- Required amssymb --> <!-- <xsl:when test="starts-with($content,'&#x02254;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02254;')"/></xsl:call-template></xsl:when> /coloneq R: colon, equals --> <!-- <xsl:when test="starts-with($content,'&#x02255;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02255;')"/></xsl:call-template></xsl:when> /eqcolon R: equals, colon --> <xsl:when test="starts-with($content,'&#x02256;')"><xsl:value-of select="'\eqcirc '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02256;')"/></xsl:call-template></xsl:when> <!--/eqcirc R: circle on equals sign --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02257;')"><xsl:value-of select="'\circeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02257;')"/></xsl:call-template></xsl:when> <!--/circeq R: circle, equals --> <!-- Required amssymb --> <!-- ? --> <xsl:when test="starts-with($content,'&#x02258;')"><xsl:value-of select="'\stackrel{\frown}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02258;')"/></xsl:call-template></xsl:when> <!-- ? --> <xsl:when test="starts-with($content,'&#x02259;')"><xsl:value-of select="'\stackrel{\wedge}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02259;')"/></xsl:call-template></xsl:when> <!--/wedgeq R: corresponds to (wedge, equals) --> <!-- ? --> <xsl:when test="starts-with($content,'&#x0225A;')"><xsl:value-of select="'\stackrel{\vee}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0225A;')"/></xsl:call-template></xsl:when> <!--logical or, equals --> <!-- ? --> <xsl:when test="starts-with($content,'&#x0225B;')"><xsl:value-of select="'\stackrel{\star}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0225B;')"/></xsl:call-template></xsl:when> <!--equal, asterisk above --> <xsl:when test="starts-with($content,'&#x0225C;')"><xsl:value-of select="'\triangleq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0225C;')"/></xsl:call-template></xsl:when> <!--/triangleq R: triangle, equals --> <!-- Required amssymb --> <!-- ? --> <xsl:when test="starts-with($content,'&#x0225D;')"><xsl:value-of select="'\stackrel{\scriptscriptstyle\mathrm{def}}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0225D;')"/></xsl:call-template></xsl:when> <!-- ? --> <xsl:when test="starts-with($content,'&#x0225E;')"><xsl:value-of select="'\stackrel{\scriptscriptstyle\mathrm{m}}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0225E;')"/></xsl:call-template></xsl:when> <!-- ? --> <xsl:when test="starts-with($content,'&#x0225F;')"><xsl:value-of select="'\stackrel{?}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0225F;')"/></xsl:call-template></xsl:when> <!--/questeq R: equal with questionmark --> <!-- <xsl:when test="starts-with($content,'&#x02260;&#x0FE00;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02260;&#x0FE00;')"/></xsl:call-template></xsl:when> not equal, dot --> <xsl:when test="starts-with($content,'&#x02260;')"><xsl:value-of select="'\ne '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02260;')"/></xsl:call-template></xsl:when> <!--/ne /neq R: not equal --> <!-- <xsl:when test="starts-with($content,'&#x02261;&#x020E5;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02261;&#x020E5;')"/></xsl:call-template></xsl:when> reverse not equivalent --> <xsl:when test="starts-with($content,'&#x02261;')"><xsl:value-of select="'\equiv '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02261;')"/></xsl:call-template></xsl:when> <!--/equiv R: identical with --> <xsl:when test="starts-with($content,'&#x02262;')"><xsl:value-of select="'\not\equiv '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02262;')"/></xsl:call-template></xsl:when> <!--/nequiv N: not identical with --> <!-- <xsl:when test="starts-with($content,'&#x02263;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02263;')"/></xsl:call-template></xsl:when> --> <xsl:when test="starts-with($content,'&#x02264;')"><xsl:value-of select="'\le '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02264;')"/></xsl:call-template></xsl:when> <!--/leq /le R: less-than-or-equal --> <xsl:when test="starts-with($content,'&#x02265;')"><xsl:value-of select="'\ge '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02265;')"/></xsl:call-template></xsl:when> <!--/geq /ge R: greater-than-or-equal --> <xsl:when test="starts-with($content,'&#x02266;')"><xsl:value-of select="'\leqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02266;')"/></xsl:call-template></xsl:when> <!--/leqq R: less, double equals --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02267;')"><xsl:value-of select="'\geqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02267;')"/></xsl:call-template></xsl:when> <!--/geqq R: greater, double equals --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02268;')"><xsl:value-of select="'\lneqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02268;')"/></xsl:call-template></xsl:when> <!--/lneqq N: less, not double equals --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02269;')"><xsl:value-of select="'\gneqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02269;')"/></xsl:call-template></xsl:when> <!--/gneqq N: greater, not dbl equals --> <!-- Required amssymb --> <!-- <xsl:when test="starts-with($content,'&#x0226A;&#x00338;&#x0FE00;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226A;&#x00338;&#x0FE00;')"/></xsl:call-template></xsl:when> not much less than, variant --> <!-- <xsl:when test="starts-with($content,'&#x0226A;&#x00338;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226A;&#x00338;')"/></xsl:call-template></xsl:when> not, vert, much less than --> <xsl:when test="starts-with($content,'&#x0226A;')"><xsl:value-of select="'\ll '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226A;')"/></xsl:call-template></xsl:when> <!--/ll R: double less-than sign --> <!-- <xsl:when test="starts-with($content,'&#x0226B;&#x00338;&#x0FE00;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226B;&#x00338;&#x0FE00;')"/></xsl:call-template></xsl:when> not much greater than, variant --> <!-- <xsl:when test="starts-with($content,'&#x0226B;&#x00338;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226B;&#x00338;')"/></xsl:call-template></xsl:when> not, vert, much greater than --> <xsl:when test="starts-with($content,'&#x0226B;')"><xsl:value-of select="'\gg '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226B;')"/></xsl:call-template></xsl:when> <!--/gg R: dbl greater-than sign --> <xsl:when test="starts-with($content,'&#x0226C;')"><xsl:value-of select="'\between '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226C;')"/></xsl:call-template></xsl:when> <!--/between R: between --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x0226D;')"><xsl:value-of select="'\not\asymp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226D;')"/></xsl:call-template></xsl:when> <xsl:when test="starts-with($content,'&#x0226E;')"><xsl:value-of select="'\nless '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226E;')"/></xsl:call-template></xsl:when> <!--/nless N: not less-than --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x0226F;')"><xsl:value-of select="'\ngtr '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0226F;')"/></xsl:call-template></xsl:when> <!--/ngtr N: not greater-than --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02270;&#x020E5;')"><xsl:value-of select="'\nleq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02270;&#x020E5;')"/></xsl:call-template></xsl:when> <!--/nleq N: not less-than-or-equal --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02270;')"><xsl:value-of select="'\nleqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02270;')"/></xsl:call-template></xsl:when> <!--/nleqq N: not less, dbl equals --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02271;&#x020E5;')"><xsl:value-of select="'\ngeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02271;&#x020E5;')"/></xsl:call-template></xsl:when> <!--/ngeq N: not greater-than-or-equal --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02271;')"><xsl:value-of select="'\ngeqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02271;')"/></xsl:call-template></xsl:when> <!--/ngeqq N: not greater, dbl equals --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02272;')"><xsl:value-of select="'\lesssim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02272;')"/></xsl:call-template></xsl:when> <!--/lesssim R: less, similar --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02273;')"><xsl:value-of select="'\gtrsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02273;')"/></xsl:call-template></xsl:when> <!--/gtrsim R: greater, similar --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02274;')"><xsl:value-of select="'\not\lesssim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02274;')"/></xsl:call-template></xsl:when> <!--not less, similar --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02275;')"><xsl:value-of select="'\not\gtrsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02275;')"/></xsl:call-template></xsl:when> <!--not greater, similar --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02276;')"><xsl:value-of select="'\lessgtr '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02276;')"/></xsl:call-template></xsl:when> <!--/lessgtr R: less, greater --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02277;')"><xsl:value-of select="'\gtrless '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02277;')"/></xsl:call-template></xsl:when> <!--/gtrless R: greater, less --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02278;')"><xsl:value-of select="'\not\lessgtr '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02278;')"/></xsl:call-template></xsl:when> <!--not less, greater --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02279;')"><xsl:value-of select="'\not\gtrless '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02279;')"/></xsl:call-template></xsl:when> <!--not greater, less --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x0227A;')"><xsl:value-of select="'\prec '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0227A;')"/></xsl:call-template></xsl:when> <!--/prec R: precedes --> <xsl:when test="starts-with($content,'&#x0227B;')"><xsl:value-of select="'\succ '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0227B;')"/></xsl:call-template></xsl:when> <!--/succ R: succeeds --> <xsl:when test="starts-with($content,'&#x0227C;')"><xsl:value-of select="'\preccurlyeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0227C;')"/></xsl:call-template></xsl:when> <!--/preccurlyeq R: precedes, curly eq --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x0227D;')"><xsl:value-of select="'\succcurlyeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0227D;')"/></xsl:call-template></xsl:when> <!--/succcurlyeq R: succeeds, curly eq --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x0227E;')"><xsl:value-of select="'\precsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0227E;')"/></xsl:call-template></xsl:when> <!--/precsim R: precedes, similar --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x0227F;')"><xsl:value-of select="'\succsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0227F;')"/></xsl:call-template></xsl:when> <!--/succsim R: succeeds, similar --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02280;')"><xsl:value-of select="'\nprec '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02280;')"/></xsl:call-template></xsl:when> <!--/nprec N: not precedes --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02281;')"><xsl:value-of select="'\nsucc '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02281;')"/></xsl:call-template></xsl:when> <!--/nsucc N: not succeeds --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x02282;')"><xsl:value-of select="'\subset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02282;')"/></xsl:call-template></xsl:when> <!--/subset R: subset or is implied by --> <xsl:when test="starts-with($content,'&#x02283;')"><xsl:value-of select="'\supset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02283;')"/></xsl:call-template></xsl:when> <!--/supset R: superset or implies --> <xsl:when test="starts-with($content,'&#x02284;')"><xsl:value-of select="'\not\subset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02284;')"/></xsl:call-template></xsl:when> <!--not subset --> <xsl:when test="starts-with($content,'&#x02285;')"><xsl:value-of select="'\not\supset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02285;')"/></xsl:call-template></xsl:when> <!--not superset --> <xsl:when test="starts-with($content,'&#x02286;')"><xsl:value-of select="'\subseteq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02286;')"/></xsl:call-template></xsl:when> <!--/subseteq R: subset, equals --> <xsl:when test="starts-with($content,'&#x02287;')"><xsl:value-of select="'\supseteq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02287;')"/></xsl:call-template></xsl:when> <!--/supseteq R: superset, equals --> <xsl:when test="starts-with($content,'&#x0228E;')"><xsl:value-of select="'\uplus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0228E;')"/></xsl:call-template></xsl:when> <!--/uplus B: plus sign in union --> <xsl:when test="starts-with($content,'&#x02293;')"><xsl:value-of select="'\sqcap '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02293;')"/></xsl:call-template></xsl:when> <!--/sqcap B: square intersection --> <xsl:when test="starts-with($content,'&#x02294;')"><xsl:value-of select="'\bigsqcup '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02294;')"/></xsl:call-template></xsl:when> <!--/sqcup B: square union --> <xsl:when test="starts-with($content,'&#x02295;')"><xsl:value-of select="'\oplus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02295;')"/></xsl:call-template></xsl:when> <!--/oplus B: plus sign in circle --> <xsl:when test="starts-with($content,'&#x02296;')"><xsl:value-of select="'\ominus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02296;')"/></xsl:call-template></xsl:when> <!--/ominus B: minus sign in circle --> <xsl:when test="starts-with($content,'&#x02297;')"><xsl:value-of select="'\otimes '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02297;')"/></xsl:call-template></xsl:when> <!--/otimes B: multiply sign in circle --> <xsl:when test="starts-with($content,'&#x02298;')"><xsl:value-of select="'\oslash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02298;')"/></xsl:call-template></xsl:when> <!--/oslash B: solidus in circle --> <!-- ? --> <xsl:when test="starts-with($content,'&#x02299;')"><xsl:value-of select="'\odot '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x02299;')"/></xsl:call-template></xsl:when> <!--/odot B: middle dot in circle --> <!--/bigodot L: circle dot operator --> <xsl:when test="starts-with($content,'&#x0229F;')"><xsl:value-of select="'\boxminus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x0229F;')"/></xsl:call-template></xsl:when> <!--/boxminus B: minus sign in box --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x022A4;')"><xsl:value-of select="'\top '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022A4;')"/></xsl:call-template></xsl:when> <!--/top top --> <xsl:when test="starts-with($content,'&#x022A5;')"><xsl:value-of select="'\perp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022A5;')"/></xsl:call-template></xsl:when> <!--/perp R: perpendicular --><!--/bot bottom --> <xsl:when test="starts-with($content,'&#x022A6;')"><xsl:value-of select="'\vdash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022A6;')"/></xsl:call-template></xsl:when> <!--/vdash R: vertical, dash --> <xsl:when test="starts-with($content,'&#x022A7;')"><xsl:value-of select="'\vDash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022A7;')"/></xsl:call-template></xsl:when> <!--/vDash R: vertical, dbl dash --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x022A8;')"><xsl:value-of select="'\models '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022A8;')"/></xsl:call-template></xsl:when> <!--/models R: --> <xsl:when test="starts-with($content,'&#x022AA;')"><xsl:value-of select="'\Vvdash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022AA;')"/></xsl:call-template></xsl:when> <!--/Vvdash R: triple vertical, dash --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x022C0;')"><xsl:value-of select="'\bigwedge '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C0;')"/></xsl:call-template></xsl:when> <!--/bigwedge L: logical or operator --> <xsl:when test="starts-with($content,'&#x022C1;')"><xsl:value-of select="'\bigvee '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C1;')"/></xsl:call-template></xsl:when> <!--/bigcap L: intersection operator --> <xsl:when test="starts-with($content,'&#x022C2;')"><xsl:value-of select="'\bigcap '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C2;')"/></xsl:call-template></xsl:when> <!--/bigvee L: logical and operator --> <xsl:when test="starts-with($content,'&#x022C3;')"><xsl:value-of select="'\bigcup '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C3;')"/></xsl:call-template></xsl:when> <!--/bigcup L: union operator --> <xsl:when test="starts-with($content,'&#x022C4;')"><xsl:value-of select="'\diamond '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C4;')"/></xsl:call-template></xsl:when> <!--/diamond B: open diamond --> <xsl:when test="starts-with($content,'&#x022C5;')"><xsl:value-of select="'\cdot '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C5;')"/></xsl:call-template></xsl:when> <!--/cdot B: small middle dot --> <xsl:when test="starts-with($content,'&#x022C6;')"><xsl:value-of select="'\star '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C6;')"/></xsl:call-template></xsl:when> <!--/star B: small star, filled --> <xsl:when test="starts-with($content,'&#x022C7;')"><xsl:value-of select="'\divideontimes '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C7;')"/></xsl:call-template></xsl:when> <!--/divideontimes B: division on times --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x022C8;')"><xsl:value-of select="'\bowtie '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022C8;')"/></xsl:call-template></xsl:when> <!--/bowtie R: --> <xsl:when test="starts-with($content,'&#x022CD;')"><xsl:value-of select="'\backsimeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022CD;')"/></xsl:call-template></xsl:when> <!--/backsimeq R: reverse similar, eq --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x022EF;')"><xsl:value-of select="'\cdots '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022EF;')"/></xsl:call-template></xsl:when> <!--/cdots, three dots, centered --> <!-- <xsl:when test="starts-with($content,'&#x022F0;')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022F0;')"/></xsl:call-template></xsl:when> three dots, ascending --> <xsl:when test="starts-with($content,'&#x022F1;')"><xsl:value-of select="'\ddots '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x022F1;')"/></xsl:call-template></xsl:when> <!--/ddots, three dots, descending --> <!-- ====================================================================== --> <xsl:when test="starts-with($content,'&#x025A1;')"><xsl:value-of select="'\square '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x025A1;')"/></xsl:call-template></xsl:when> <!--/square, square --> <!-- Required amssymb --> <xsl:when test="starts-with($content,'&#x025AA;')"><xsl:value-of select="'\blacksquare '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '&#x025AA;')"/></xsl:call-template></xsl:when> <!--/blacksquare, square, filled --> <!-- Required amssymb --> <xsl:when test='starts-with($content,"&apos;")'><xsl:value-of select='"\text{&apos;}"' /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select='substring-after($content, "&apos;")'/></xsl:call-template></xsl:when><!-- \text required amslatex --> <xsl:when test='starts-with($content,"(")'><xsl:value-of select='"\left("' /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '(')"/></xsl:call-template></xsl:when> <xsl:when test='starts-with($content,")")'><xsl:value-of select='"\right)"' /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, ')')"/></xsl:call-template></xsl:when> <xsl:when test='starts-with($content,"[")'><xsl:value-of select='"\left["' /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '[')"/></xsl:call-template></xsl:when> <xsl:when test='starts-with($content,"]")'><xsl:value-of select='"\right]"' /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, ']')"/></xsl:call-template></xsl:when> <xsl:when test='starts-with($content,"{")'><xsl:value-of select='"\left\{"' /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '{')"/></xsl:call-template></xsl:when> <xsl:when test='starts-with($content,"}")'><xsl:value-of select='"\right\}"' /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '}')"/></xsl:call-template></xsl:when> <xsl:otherwise> <xsl:value-of select="substring($content,1,1)"/> <xsl:call-template name="replaceEntities"> <xsl:with-param name="content" select="substring($content, 2)"/> </xsl:call-template> </xsl:otherwise> </xsl:choose></xsl:if> </xsl:template> <xsl:template name="replaceMtextEntities"> <xsl:param name="content"/> <xsl:choose> <xsl:when test="contains($content,'&#x02009;&#x0200A;&#x0200A;')"> <!-- ThickSpace - space of width 5/18 em --> <xsl:call-template name="replaceMtextEntities"> <xsl:with-param name="content" select="concat(substring-before($content,'&#x02009;&#x0200A;&#x0200A;'),'\hspace{0.28em}',substring-after($content,'&#x02009;&#x0200A;&#x0200A;'))"/> </xsl:call-template> </xsl:when> <xsl:when test="contains($content,'&#x02009;')"> <!-- ThinSpace - space of width 3/18 em --> <xsl:call-template name="replaceMtextEntities"> <xsl:with-param name="content" select="concat(substring-before($content,'&#x02009;'),'\hspace{0.17em}',substring-after($content,'&#x02009;'))"/> </xsl:call-template> </xsl:when> <xsl:otherwise> <xsl:value-of select="normalize-space($content)"/> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- ====================================================================== --> <!-- $id: tables.xsl, 2002/17/05 Exp $ This file is part of the XSLT MathML Library distribution. See ./README or http://www.raleigh.ru/MathML/mmltex for copyright and other information --> <!-- ====================================================================== --> <xsl:template match="m:mtd[@columnspan]"> <xsl:text>\multicolumn{</xsl:text> <xsl:value-of select="@columnspan"/> <xsl:text>}{c}{</xsl:text> <xsl:apply-templates/> <xsl:text>}</xsl:text> <xsl:if test="count(following-sibling::*)>0"> <xsl:text>&amp; </xsl:text> </xsl:if> </xsl:template> <xsl:template match="m:mtd"> <xsl:if test="@columnalign='right' or @columnalign='center'"> <xsl:text>\hfill </xsl:text> </xsl:if> <xsl:apply-templates/> <xsl:if test="@columnalign='left' or @columnalign='center'"> <xsl:text>\hfill </xsl:text> </xsl:if> <xsl:if test="count(following-sibling::*)>0"> <!-- this test valid for Sablotron, another form - test="not(position()=last())". Also for m:mtd[@columnspan] and m:mtr --> <xsl:text>&amp; </xsl:text> </xsl:if> </xsl:template> <xsl:template match="m:mtr"> <xsl:apply-templates/> <xsl:if test="count(following-sibling::*)>0"> <xsl:text>\\ </xsl:text> </xsl:if> </xsl:template> <xsl:template match="m:mtable"> <xsl:text>\begin{array}{</xsl:text> <xsl:if test="@frame='solid'"> <xsl:text>|</xsl:text> </xsl:if> <xsl:variable name="numbercols" select="count(./m:mtr[1]/m:mtd[not(@columnspan)])+sum(./m:mtr[1]/m:mtd/@columnspan)"/> <xsl:choose> <xsl:when test="@columnalign"> <xsl:variable name="colalign"> <xsl:call-template name="colalign"> <xsl:with-param name="colalign" select="@columnalign"/> </xsl:call-template> </xsl:variable> <xsl:choose> <xsl:when test="string-length($colalign) > $numbercols"> <xsl:value-of select="substring($colalign,1,$numbercols)"/> </xsl:when> <xsl:when test="string-length($colalign) &lt; $numbercols"> <xsl:value-of select="$colalign"/> <xsl:call-template name="generate-string"> <xsl:with-param name="text" select="substring($colalign,string-length($colalign))"/> <xsl:with-param name="count" select="$numbercols - string-length($colalign)"/> </xsl:call-template> </xsl:when> <xsl:otherwise> <xsl:value-of select="$colalign"/> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:otherwise> <xsl:call-template name="generate-string"> <xsl:with-param name="text" select="'c'"/> <xsl:with-param name="count" select="$numbercols"/> </xsl:call-template> </xsl:otherwise> </xsl:choose> <xsl:if test="@frame='solid'"> <xsl:text>|</xsl:text> </xsl:if> <xsl:text>}</xsl:text> <xsl:if test="@frame='solid'"> <xsl:text>\hline </xsl:text> </xsl:if> <xsl:apply-templates/> <xsl:if test="@frame='solid'"> <xsl:text>\\ \hline</xsl:text> </xsl:if> <xsl:text>\end{array}</xsl:text> </xsl:template> <xsl:template name="colalign"> <xsl:param name="colalign"/> <xsl:choose> <xsl:when test="contains($colalign,' ')"> <xsl:value-of select="substring($colalign,1,1)"/> <xsl:call-template name="colalign"> <xsl:with-param name="colalign" select="substring-after($colalign,' ')"/> </xsl:call-template> </xsl:when> <xsl:otherwise> <xsl:value-of select="substring($colalign,1,1)"/> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="generate-string"> <!-- template from XSLT Standard Library v1.1 --> <xsl:param name="text"/> <xsl:param name="count"/> <xsl:choose> <xsl:when test="string-length($text) = 0 or $count &lt;= 0"/> <xsl:otherwise> <xsl:value-of select="$text"/> <xsl:call-template name="generate-string"> <xsl:with-param name="text" select="$text"/> <xsl:with-param name="count" select="$count - 1"/> </xsl:call-template> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- ====================================================================== --> <!-- $Id: scripts.xsl,v 1.1.1.1 2002/10/26 14:20:06 shade33 Exp $ This file is part of the XSLT MathML Library distribution. See ./README or http://www.raleigh.ru/MathML/mmltex for copyright and other information --> <!-- ====================================================================== --> <xsl:template match="m:munderover"> <xsl:variable name="base"> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="./*[1]"/> </xsl:call-template> </xsl:variable> <xsl:variable name="under"> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="./*[2]"/> </xsl:call-template> </xsl:variable> <xsl:variable name="over"> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="./*[3]"/> </xsl:call-template> </xsl:variable> <xsl:choose> <xsl:when test="$over='&#x000AF;'"> <!-- OverBar - over bar --> <xsl:text>\overline{</xsl:text> <xsl:call-template name="munder"> <xsl:with-param name="base" select="$base"/> <xsl:with-param name="under" select="$under"/> </xsl:call-template> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="$over='&#x0FE37;'"> <!-- OverBrace - over brace --> <xsl:text>\overbrace{</xsl:text> <xsl:call-template name="munder"> <xsl:with-param name="base" select="$base"/> <xsl:with-param name="under" select="$under"/> </xsl:call-template> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="$under='&#x00332;'"> <!-- UnderBar - combining low line --> <xsl:text>\underline{</xsl:text> <xsl:call-template name="mover"> <xsl:with-param name="base" select="$base"/> <xsl:with-param name="over" select="$over"/> <xsl:with-param name="pos_over" select="3"/> </xsl:call-template> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="$under='&#x0FE38;'"> <!-- UnderBrace - under brace --> <xsl:text>\underbrace{</xsl:text> <xsl:call-template name="mover"> <xsl:with-param name="base" select="$base"/> <xsl:with-param name="over" select="$over"/> <xsl:with-param name="pos_over" select="3"/> </xsl:call-template> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="translate($base,'&#x0220F;&#x02210;&#x022c2;&#x022c3;&#x02294;', '&#x02211;&#x02211;&#x02211;&#x02211;&#x02211;')='&#x02211;'"> <!-- if $base is operator, such as &#x02211; /sum L: summation operator &#x0220F; /prod L: product operator &#x02210; /coprod L: coproduct operator &#x022c2; /bigcap &#x022c3; /bigcup &#x02294; /bigsqcup --> <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:when> <xsl:otherwise> <xsl:text>\underset{</xsl:text> <xsl:apply-templates select="./*[2]"/> <xsl:text>}{\overset{</xsl:text> <xsl:apply-templates select="./*[3]"/> <xsl:text>}{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}}</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="m:mover"> <xsl:call-template name="mover"> <xsl:with-param name="base"> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="./*[1]"/> </xsl:call-template> </xsl:with-param> <xsl:with-param name="over"> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="./*[2]"/> </xsl:call-template> </xsl:with-param> </xsl:call-template> </xsl:template> <xsl:template match="m:munder"> <xsl:call-template name="munder"> <xsl:with-param name="base"> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="./*[1]"/> </xsl:call-template> </xsl:with-param> <xsl:with-param name="under"> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="./*[2]"/> </xsl:call-template> </xsl:with-param> </xsl:call-template> </xsl:template> <xsl:template name="mover"> <xsl:param name="base"/> <xsl:param name="over"/> <xsl:param name="pos_over" select="2"/> <xsl:choose> <xsl:when test="$over='&#x000AF;'"> <!-- OverBar - over bar --> <xsl:text>\overline{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="$over='&#x0FE37;'"> <!-- OverBrace - over brace --> <xsl:text>\overbrace{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="translate($base,'&#x0220F;&#x02210;&#x022c2;&#x022c3;&#x02294;', '&#x02211;&#x02211;&#x02211;&#x02211;&#x02211;')='&#x02211;'"> <!-- if $base is operator, such as &#x02211; /sum L: summation operator &#x0220F; /prod L: product operator &#x02210; /coprod L: coproduct operator &#x022c2; /bigcap &#x022c3; /bigcup &#x02294; /bigsqcup --> <xsl:apply-templates select="./*[1]"/> <xsl:text>^{</xsl:text> <xsl:apply-templates select="./*[$pos_over]"/> <xsl:text>}</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>\stackrel{</xsl:text> <xsl:apply-templates select="./*[$pos_over]"/> <xsl:text>}{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}</xsl:text> <!-- <xsl:text>\overset{</xsl:text> <xsl:apply-templates select="./*[$pos_over]"/> <xsl:text>}{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}</xsl:text>--> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="munder"> <xsl:param name="base"/> <xsl:param name="under"/> <xsl:choose> <xsl:when test="$under='&#x00332;'"> <!-- UnderBar - combining low line --> <xsl:text>\underline{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="$under='&#x0FE38;'"> <!-- UnderBrace - under brace --> <xsl:text>\underbrace{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="translate($base,'&#x0220F;&#x02210;&#x022c2;&#x022c3;&#x02294;', '&#x02211;&#x02211;&#x02211;&#x02211;&#x02211;')='&#x02211;'"> <!-- if $base is operator, such as &#x02211; /sum L: summation operator &#x0220F; /prod L: product operator &#x02210; /coprod L: coproduct operator &#x022c2; /bigcap &#x022c3; /bigcup &#x02294; /bigsqcup --> <xsl:apply-templates select="./*[1]"/> <xsl:text>_{</xsl:text> <xsl:apply-templates select="./*[2]"/> <xsl:text>}</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>\underset{</xsl:text> <!-- Required AmsMath package --> <xsl:apply-templates select="./*[2]"/> <xsl:text>}{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:template> <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:template match="m:msup"> <xsl:text>{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}^{</xsl:text> <xsl:apply-templates select="./*[2]"/> <xsl:text>}</xsl:text> </xsl:template> <xsl:template match="m:msub"> <xsl:text>{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}_{</xsl:text> <xsl:apply-templates select="./*[2]"/> <xsl:text>}</xsl:text> </xsl:template> <xsl:template match="m:mmultiscripts" mode="mprescripts"> <xsl:for-each select="m:mprescripts/following-sibling::*"> <xsl:if test="position() mod 2 and local-name(.)!='none'"> <xsl:text>{}_{</xsl:text> <xsl:apply-templates select="."/> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="not(position() mod 2) and local-name(.)!='none'"> <xsl:text>{}^{</xsl:text> <xsl:apply-templates select="."/> <xsl:text>}</xsl:text> </xsl:if> </xsl:for-each> <xsl:apply-templates select="./*[1]"/> <xsl:for-each select="m:mprescripts/preceding-sibling::*[position()!=last()]"> <xsl:if test="position()>2 and local-name(.)!='none'"> <xsl:text>{}</xsl:text> </xsl:if> <xsl:if test="position() mod 2 and local-name(.)!='none'"> <xsl:text>_{</xsl:text> <xsl:apply-templates select="."/> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="not(position() mod 2) and local-name(.)!='none'"> <xsl:text>^{</xsl:text> <xsl:apply-templates select="."/> <xsl:text>}</xsl:text> </xsl:if> </xsl:for-each> </xsl:template> <xsl:template match="m:mmultiscripts"> <xsl:choose> <xsl:when test="m:mprescripts"> <xsl:apply-templates select="." mode="mprescripts"/> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="./*[1]"/> <xsl:for-each select="*[position()>1]"> <xsl:if test="position()>2 and local-name(.)!='none'"> <xsl:text>{}</xsl:text> </xsl:if> <xsl:if test="position() mod 2 and local-name(.)!='none'"> <xsl:text>_{</xsl:text> <xsl:apply-templates select="."/> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="not(position() mod 2) and local-name(.)!='none'"> <xsl:text>^{</xsl:text> <xsl:apply-templates select="."/> <xsl:text>}</xsl:text> </xsl:if> </xsl:for-each> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- ====================================================================== --> <!-- $id: glayout.xsl, 2002/17/05 Exp $ This file is part of the XSLT MathML Library distribution. See ./README or http://www.raleigh.ru/MathML/mmltex for copyright and other information --> <!-- ====================================================================== --> <xsl:template match="m:mfrac"> <xsl:choose> <xsl:when test="@bevelled='true'"> <!-- <xsl:text>\raisebox{1ex}{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}\!\left/ \!\raisebox{-1ex}{</xsl:text> <xsl:apply-templates select="./*[2]"/> <xsl:text>}\right.</xsl:text>--> </xsl:when> <xsl:when test="@linethickness"> <xsl:text>\genfrac{}{}{</xsl:text> <xsl:choose> <xsl:when test="number(@linethickness)"> <xsl:value-of select="@linethickness div 10"/> <xsl:text>ex</xsl:text> </xsl:when> <xsl:when test="@linethickness='thin'"> <xsl:text>.05ex</xsl:text> </xsl:when> <xsl:when test="@linethickness='medium'"/> <xsl:when test="@linethickness='thick'"> <xsl:text>.2ex</xsl:text> </xsl:when> <xsl:otherwise> <xsl:value-of select="@linethickness"/> </xsl:otherwise> </xsl:choose> <xsl:text>}{}{</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>\frac{</xsl:text> </xsl:otherwise> </xsl:choose> <xsl:if test="@numalign='right'"> <xsl:text>\hfill </xsl:text> </xsl:if> <xsl:apply-templates select="./*[1]"/> <xsl:if test="@numalign='left'"> <xsl:text>\hfill </xsl:text> </xsl:if> <xsl:text>}{</xsl:text> <xsl:if test="@denomalign='right'"> <xsl:text>\hfill </xsl:text> </xsl:if> <xsl:apply-templates select="./*[2]"/> <xsl:if test="@denomalign='left'"> <xsl:text>\hfill </xsl:text> </xsl:if> <xsl:text>}</xsl:text> </xsl:template> <xsl:template match="m:mroot"> <xsl:choose> <xsl:when test="count(./*)=2"> <xsl:text>\sqrt[</xsl:text> <xsl:apply-templates select="./*[2]"/> <xsl:text>]{</xsl:text> <xsl:apply-templates select="./*[1]"/> <xsl:text>}</xsl:text> </xsl:when> <xsl:otherwise> <!-- number of arguments is not 2 - code 25 --> <xsl:message>exception 25:</xsl:message> <xsl:text>\text{exception 25:}</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="m:msqrt"> <xsl:text>\sqrt{</xsl:text> <xsl:apply-templates/> <xsl:text>}</xsl:text> </xsl:template> <xsl:template match="m:mfenced"> <xsl:choose> <xsl:when test="@open"> <xsl:if test="translate(@open,'{}[]()|','{{{{{{{')='{'"> <xsl:text>\left</xsl:text> </xsl:if> <xsl:if test="@open='{' or @open='}'"> <xsl:text>\</xsl:text> </xsl:if> <xsl:value-of select="@open"/> </xsl:when> <xsl:otherwise><xsl:text>\left(</xsl:text></xsl:otherwise> </xsl:choose> <xsl:choose> <xsl:when test="count(./*)>1"> <xsl:variable name="symbol"> <xsl:choose> <xsl:when test="@separators"> <xsl:call-template name="startspace"> <xsl:with-param name="symbol" select="@separators"/> </xsl:call-template> </xsl:when> <xsl:otherwise>,</xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:for-each select="./*"> <xsl:apply-templates select="."/> <xsl:if test="not(position()=last())"> <xsl:choose> <xsl:when test="position()>string-length($symbol)"> <xsl:value-of select="substring($symbol,string-length($symbol))"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="substring($symbol,position(),1)"/> </xsl:otherwise> </xsl:choose> </xsl:if> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:apply-templates/> </xsl:otherwise> </xsl:choose> <xsl:choose> <xsl:when test="@close"> <xsl:if test="translate(@open,'{}[]()|','{{{{{{{')='{'"> <xsl:text>\right</xsl:text> </xsl:if> <xsl:if test="@open='{' or @open='}'"> <xsl:text>\</xsl:text> </xsl:if> <xsl:value-of select="@close"/> </xsl:when> <xsl:otherwise><xsl:text>\right)</xsl:text></xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="m:mphantom"> <xsl:text>\phantom{</xsl:text> <xsl:apply-templates/> <xsl:text>}</xsl:text> </xsl:template> <xsl:template match="m:menclose"> <xsl:choose> <xsl:when test="@notation = 'actuarial'"> <xsl:text>\overline{</xsl:text> <xsl:apply-templates/> <xsl:text>\hspace{.2em}|}</xsl:text> </xsl:when> <xsl:when test="@notation = 'radical'"> <xsl:text>\sqrt{</xsl:text> <xsl:apply-templates/> <xsl:text>}</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>\overline{)</xsl:text> <xsl:apply-templates/> <xsl:text>}</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="m:mrow"> <xsl:apply-templates/> </xsl:template> <xsl:template match="m:mstyle"> <xsl:if test="@background"> <xsl:text>\colorbox[rgb]{</xsl:text> <xsl:call-template name="color"> <xsl:with-param name="color" select="@background"/> </xsl:call-template> <xsl:text>}{$</xsl:text> </xsl:if> <xsl:if test="@color"> <xsl:text>\textcolor[rgb]{</xsl:text> <xsl:call-template name="color"> <xsl:with-param name="color" select="@color"/> </xsl:call-template> <xsl:text>}{</xsl:text> </xsl:if> <xsl:apply-templates/> <xsl:if test="@color"> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="@background"> <xsl:text>$}</xsl:text> </xsl:if> </xsl:template> <!-- <xsl:template match="m:mstyle"> <xsl:if test="@displaystyle='true'"> <xsl:text>{\displaystyle</xsl:text> </xsl:if> <xsl:if test="@scriptlevel=2"> <xsl:text>{\scriptscriptstyle</xsl:text> </xsl:if> <xsl:apply-templates/> <xsl:if test="@scriptlevel=2"> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="@displaystyle='true'"> <xsl:text>}</xsl:text> </xsl:if> </xsl:template> --> <xsl:template match="m:merror"> <xsl:apply-templates/> </xsl:template> <!-- ====================================================================== --> <!-- $id: tokens.xsl, 2002/22/11 Exp $ This file is part of the XSLT MathML Library distribution. See ./README or http://www.raleigh.ru/MathML/mmltex for copyright and other information --> <!-- ====================================================================== --> <xsl:template match="m:mi|m:mn|m:mo|m:mtext|m:ms"> <xsl:call-template name="CommonTokenAtr"/> </xsl:template> <xsl:template name="mi"> <xsl:choose> <xsl:when test="string-length(normalize-space(.))>1 and not(@mathvariant)"> <xsl:text>\mathrm{</xsl:text> <xsl:apply-templates/> <xsl:text>}</xsl:text> </xsl:when> <xsl:otherwise> <xsl:apply-templates/> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="mn"> <xsl:apply-templates/> </xsl:template> <xsl:template name="mo"> <xsl:apply-templates/> </xsl:template> <xsl:template name="mtext"> <xsl:variable name="content"> <xsl:call-template name="replaceMtextEntities"> <xsl:with-param name="content" select="."/> </xsl:call-template> </xsl:variable> <xsl:text>\text{</xsl:text> <xsl:value-of select="$content"/> <xsl:text>}</xsl:text> </xsl:template> <xsl:template match="m:mspace"> <xsl:text>\phantom{\rule</xsl:text> <xsl:if test="@depth"> <xsl:text>[-</xsl:text> <xsl:value-of select="@depth"/> <xsl:text>]</xsl:text> </xsl:if> <xsl:text>{</xsl:text> <xsl:if test="not(@width)"> <xsl:text>0ex</xsl:text> </xsl:if> <xsl:value-of select="@width"/> <xsl:text>}{</xsl:text> <xsl:if test="not(@height)"> <xsl:text>0ex</xsl:text> </xsl:if> <xsl:value-of select="@height"/> <xsl:text>}}</xsl:text> </xsl:template> <xsl:template name="ms"> <xsl:choose> <xsl:when test="@lquote"><xsl:value-of select="@lquote"/></xsl:when> <xsl:otherwise><xsl:text>"</xsl:text></xsl:otherwise> </xsl:choose><xsl:apply-templates/><xsl:choose> <xsl:when test="@rquote"><xsl:value-of select="@rquote"/></xsl:when> <xsl:otherwise><xsl:text>"</xsl:text></xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="CommonTokenAtr"> <xsl:if test="@mathbackground"> <xsl:text>\colorbox[rgb]{</xsl:text> <xsl:call-template name="color"> <xsl:with-param name="color" select="@mathbackground"/> </xsl:call-template> <xsl:text>}{$</xsl:text> </xsl:if> <xsl:if test="@color or @mathcolor"> <!-- Note: @color is deprecated in MathML 2.0 --> <xsl:text>\textcolor[rgb]{</xsl:text> <xsl:call-template name="color"> <xsl:with-param name="color" select="@color|@mathcolor"/> </xsl:call-template> <xsl:text>}{</xsl:text> </xsl:if> <xsl:if test="@mathvariant"> <xsl:choose> <xsl:when test="@mathvariant='normal'"> <xsl:text>\mathrm{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='bold'"> <xsl:text>\mathbf{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='italic'"> <xsl:text>\mathit{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='bold-italic'"> <!-- Required definition --> <xsl:text>\mathbit{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='double-struck'"> <!-- Required amsfonts --> <xsl:text>\mathbb{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='bold-fraktur'"> <!-- Error --> <xsl:text>{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='script'"> <xsl:text>\mathcal{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='bold-script'"> <!-- Error --> <xsl:text>\mathsc{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='fraktur'"> <!-- Required amsfonts --> <xsl:text>\mathfrak{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='sans-serif'"> <xsl:text>\mathsf{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='bold-sans-serif'"> <!-- Required definition --> <xsl:text>\mathbsf{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='sans-serif-italic'"> <!-- Required definition --> <xsl:text>\mathsfit{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='sans-serif-bold-italic'"> <!-- Error --> <xsl:text>\mathbsfit{</xsl:text> </xsl:when> <xsl:when test="@mathvariant='monospace'"> <xsl:text>\mathtt{</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>{</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:if> <xsl:call-template name="selectTemplate"/> <xsl:if test="@mathvariant"> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="@color or @mathcolor"> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="@mathbackground"> <xsl:text>$}</xsl:text> </xsl:if> </xsl:template> <xsl:template name="selectTemplate"> <!-- <xsl:variable name="name" select="local-name()"/> <xsl:call-template name="{$name}"/>--> <xsl:choose> <xsl:when test="local-name(.)='mi'"> <xsl:call-template name="mi"/> </xsl:when> <xsl:when test="local-name(.)='mn'"> <xsl:call-template name="mn"/> </xsl:when> <xsl:when test="local-name(.)='mo'"> <xsl:call-template name="mo"/> </xsl:when> <xsl:when test="local-name(.)='mtext'"> <xsl:call-template name="mtext"/> </xsl:when> <xsl:when test="local-name(.)='ms'"> <xsl:call-template name="ms"/> </xsl:when> </xsl:choose> </xsl:template> <xsl:template name="color"> <!-- NB: Variables colora and valueColor{n} only for Sablotron --> <xsl:param name="color"/> <xsl:variable name="colora" select="translate($color,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')"/> <xsl:choose> <xsl:when test="starts-with($colora,'#') and string-length($colora)=4"> <xsl:variable name="valueColor"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,2,1)"/> </xsl:call-template> </xsl:variable> <xsl:value-of select="$valueColor div 15"/><xsl:text>,</xsl:text> <xsl:variable name="valueColor1"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,3,1)"/> </xsl:call-template> </xsl:variable> <xsl:value-of select="$valueColor1 div 15"/><xsl:text>,</xsl:text> <xsl:variable name="valueColor2"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,4,1)"/> </xsl:call-template> </xsl:variable> <xsl:value-of select="$valueColor2 div 15"/> </xsl:when> <xsl:when test="starts-with($colora,'#') and string-length($colora)=7"> <xsl:variable name="valueColor1"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,2,1)"/> </xsl:call-template> </xsl:variable> <xsl:variable name="valueColor2"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,3,1)"/> </xsl:call-template> </xsl:variable> <xsl:value-of select="($valueColor1*16 + $valueColor2) div 255"/><xsl:text>,</xsl:text> <xsl:variable name="valueColor1a"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,4,1)"/> </xsl:call-template> </xsl:variable> <xsl:variable name="valueColor2a"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,5,1)"/> </xsl:call-template> </xsl:variable> <xsl:value-of select="($valueColor1a*16 + $valueColor2a) div 255"/><xsl:text>,</xsl:text> <xsl:variable name="valueColor1b"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,6,1)"/> </xsl:call-template> </xsl:variable> <xsl:variable name="valueColor2b"> <xsl:call-template name="Hex2Decimal"> <xsl:with-param name="arg" select="substring($colora,7,1)"/> </xsl:call-template> </xsl:variable> <xsl:value-of select="($valueColor1b*16 + $valueColor2b) div 255"/> </xsl:when> <!-- ======================= if color specified as an html-color-name ========================================== --> <xsl:when test="$colora='aqua'"><xsl:text>0,1,1</xsl:text></xsl:when> <xsl:when test="$colora='black'"><xsl:text>0,0,0</xsl:text></xsl:when> <xsl:when test="$colora='blue'"><xsl:text>0,0,1</xsl:text></xsl:when> <xsl:when test="$colora='fuchsia'"><xsl:text>1,0,1</xsl:text></xsl:when> <xsl:when test="$colora='gray'"><xsl:text>.5,.5,.5</xsl:text></xsl:when> <xsl:when test="$colora='green'"><xsl:text>0,.5,0</xsl:text></xsl:when> <xsl:when test="$colora='lime'"><xsl:text>0,1,0</xsl:text></xsl:when> <xsl:when test="$colora='maroon'"><xsl:text>.5,0,0</xsl:text></xsl:when> <xsl:when test="$colora='navy'"><xsl:text>0,0,.5</xsl:text></xsl:when> <xsl:when test="$colora='olive'"><xsl:text>.5,.5,0</xsl:text></xsl:when> <xsl:when test="$colora='purple'"><xsl:text>.5,0,.5</xsl:text></xsl:when> <xsl:when test="$colora='red'"><xsl:text>1,0,0</xsl:text></xsl:when> <xsl:when test="$colora='silver'"><xsl:text>.75,.75,.75</xsl:text></xsl:when> <xsl:when test="$colora='teal'"><xsl:text>0,.5,.5</xsl:text></xsl:when> <xsl:when test="$colora='white'"><xsl:text>1,1,1</xsl:text></xsl:when> <xsl:when test="$colora='yellow'"><xsl:text>1,1,0</xsl:text></xsl:when> <xsl:otherwise> <xsl:message>Exception at color template</xsl:message> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="Hex2Decimal"> <xsl:param name="arg"/> <xsl:choose> <xsl:when test="$arg='f'"> <xsl:value-of select="15"/> </xsl:when> <xsl:when test="$arg='e'"> <xsl:value-of select="14"/> </xsl:when> <xsl:when test="$arg='d'"> <xsl:value-of select="13"/> </xsl:when> <xsl:when test="$arg='c'"> <xsl:value-of select="12"/> </xsl:when> <xsl:when test="$arg='b'"> <xsl:value-of select="11"/> </xsl:when> <xsl:when test="$arg='a'"> <xsl:value-of select="10"/> </xsl:when> <xsl:when test="translate($arg, '0123456789', '9999999999')='9'"> <!-- if $arg is number --> <xsl:value-of select="$arg"/> </xsl:when> <xsl:otherwise> <xsl:message>Exception at Hex2Decimal template</xsl:message> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="m:*/text()"> <xsl:call-template name="replaceEntities"> <xsl:with-param name="content" select="normalize-space()"/> </xsl:call-template> </xsl:template> </xsl:stylesheet>
Memory