feat: add xsl files
This commit is contained in:
parent
6f673703e8
commit
c569a9680d
8 changed files with 4460 additions and 0 deletions
1093
src/xsl/cmarkup.xsl
Normal file
1093
src/xsl/cmarkup.xsl
Normal file
File diff suppressed because it is too large
Load diff
316
src/xsl/entities.xsl
Normal file
316
src/xsl/entities.xsl
Normal file
|
|
@ -0,0 +1,316 @@
|
||||||
|
<?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'>
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<!-- $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,'ɛ')"><xsl:value-of select="'\varepsilon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ɛ')"/></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,'Γ')"><xsl:value-of select="'\Gamma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Γ')"/></xsl:call-template></xsl:when> <!--/Gamma capital Gamma, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Δ')"><xsl:value-of select="'\Delta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Δ')"/></xsl:call-template></xsl:when> <!--/Delta capital Delta, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Θ')"><xsl:value-of select="'\Theta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Θ')"/></xsl:call-template></xsl:when> <!--/Theta capital Theta, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Λ')"><xsl:value-of select="'\Lambda '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Λ')"/></xsl:call-template></xsl:when> <!--/Lambda capital Lambda, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Ξ')"><xsl:value-of select="'\Xi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Ξ')"/></xsl:call-template></xsl:when> <!--/Xi capital Xi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Π')"><xsl:value-of select="'\Pi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Π')"/></xsl:call-template></xsl:when> <!--/Pi capital Pi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Σ')"><xsl:value-of select="'\Sigma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Σ')"/></xsl:call-template></xsl:when> <!--/Sigma capital Sigma, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Φ')"><xsl:value-of select="'\Phi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Φ')"/></xsl:call-template></xsl:when> <!--/Phi capital Phi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Ψ')"><xsl:value-of select="'\Psi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Ψ')"/></xsl:call-template></xsl:when> <!--/Psi capital Psi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'Ω')"><xsl:value-of select="'\Omega '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'Ω')"/></xsl:call-template></xsl:when> <!--/Omega capital Omega, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'α')"><xsl:value-of select="'\alpha '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'α')"/></xsl:call-template></xsl:when> <!--/alpha small alpha, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'β')"><xsl:value-of select="'\beta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'β')"/></xsl:call-template></xsl:when> <!--/beta small beta, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'γ')"><xsl:value-of select="'\gamma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'γ')"/></xsl:call-template></xsl:when> <!--/gamma small gamma, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'δ')"><xsl:value-of select="'\delta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'δ')"/></xsl:call-template></xsl:when> <!--/delta small delta, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ε')"><xsl:value-of select="'\epsilon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ε')"/></xsl:call-template></xsl:when> <!--/straightepsilon, small epsilon, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ζ')"><xsl:value-of select="'\zeta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ζ')"/></xsl:call-template></xsl:when> <!--/zeta small zeta, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'η')"><xsl:value-of select="'\eta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'η')"/></xsl:call-template></xsl:when> <!--/eta small eta, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'θ')"><xsl:value-of select="'\theta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'θ')"/></xsl:call-template></xsl:when> <!--/theta straight theta, small theta, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ι')"><xsl:value-of select="'\iota '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ι')"/></xsl:call-template></xsl:when> <!--/iota small iota, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'κ')"><xsl:value-of select="'\kappa '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'κ')"/></xsl:call-template></xsl:when> <!--/kappa small kappa, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'λ')"><xsl:value-of select="'\lambda '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'λ')"/></xsl:call-template></xsl:when> <!--/lambda small lambda, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'μ')"><xsl:value-of select="'\mu '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'μ')"/></xsl:call-template></xsl:when> <!--/mu small mu, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ν')"><xsl:value-of select="'\nu '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ν')"/></xsl:call-template></xsl:when> <!--/nu small nu, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ξ')"><xsl:value-of select="'\xi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ξ')"/></xsl:call-template></xsl:when> <!--/xi small xi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'π')"><xsl:value-of select="'\pi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'π')"/></xsl:call-template></xsl:when> <!--/pi small pi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ρ')"><xsl:value-of select="'\rho '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ρ')"/></xsl:call-template></xsl:when> <!--/rho small rho, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ς')"><xsl:value-of select="'\varsigma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ς')"/></xsl:call-template></xsl:when> <!--/varsigma -->
|
||||||
|
<xsl:when test="starts-with($content,'σ')"><xsl:value-of select="'\sigma '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'σ')"/></xsl:call-template></xsl:when> <!--/sigma small sigma, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'τ')"><xsl:value-of select="'\tau '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'τ')"/></xsl:call-template></xsl:when> <!--/tau small tau, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'υ')"><xsl:value-of select="'\upsilon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'υ')"/></xsl:call-template></xsl:when> <!--/upsilon small upsilon, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'φ')"><xsl:value-of select="'\phi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'φ')"/></xsl:call-template></xsl:when> <!--/straightphi - small phi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'χ')"><xsl:value-of select="'\chi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'χ')"/></xsl:call-template></xsl:when> <!--/chi small chi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ψ')"><xsl:value-of select="'\psi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ψ')"/></xsl:call-template></xsl:when> <!--/psi small psi, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ω')"><xsl:value-of select="'\omega '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ω')"/></xsl:call-template></xsl:when> <!--/omega small omega, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ϑ')"><xsl:value-of select="'\vartheta '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ϑ')"/></xsl:call-template></xsl:when> <!--/vartheta - curly or open theta -->
|
||||||
|
<xsl:when test="starts-with($content,'ϒ')"><xsl:value-of select="'\Upsilon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ϒ')"/></xsl:call-template></xsl:when> <!--/Upsilon capital Upsilon, Greek -->
|
||||||
|
<xsl:when test="starts-with($content,'ϕ')"><xsl:value-of select="'\varphi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ϕ')"/></xsl:call-template></xsl:when> <!--/varphi - curly or open phi -->
|
||||||
|
<xsl:when test="starts-with($content,'ϖ')"><xsl:value-of select="'\varpi '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ϖ')"/></xsl:call-template></xsl:when> <!--/varpi -->
|
||||||
|
<xsl:when test="starts-with($content,'ϰ')"><xsl:value-of select="'\varkappa '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ϰ')"/></xsl:call-template></xsl:when> <!--/varkappa -->
|
||||||
|
<xsl:when test="starts-with($content,'ϱ')"><xsl:value-of select="'\varrho '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ϱ')"/></xsl:call-template></xsl:when> <!--/varrho -->
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<xsl:when test="starts-with($content,'​')"><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '​')"/></xsl:call-template></xsl:when> <!--short form of ⁣ -->
|
||||||
|
<xsl:when test="starts-with($content,'…')"><xsl:value-of select="'\dots '" /><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="'\prime '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '′')"/></xsl:call-template></xsl:when> <!--/prime prime or minute -->
|
||||||
|
<xsl:when test="starts-with($content,'⁡')"><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⁡')"/></xsl:call-template></xsl:when> <!-- ApplyFunction -->
|
||||||
|
<xsl:when test="starts-with($content,'⁢')"><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⁢')"/></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,'ℏ︀')"><xsl:value-of select="'\hbar '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℏ︀')"/></xsl:call-template></xsl:when> <!--/hbar - Planck's over 2pi -->
|
||||||
|
<xsl:when test="starts-with($content,'ℏ')"><xsl:value-of select="'\hslash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℏ')"/></xsl:call-template></xsl:when> <!--/hslash - variant Planck's over 2pi --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'ℑ')"><xsl:value-of select="'\Im '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℑ')"/></xsl:call-template></xsl:when> <!--/Im - imaginary -->
|
||||||
|
<xsl:when test="starts-with($content,'ℓ')"><xsl:value-of select="'\ell '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℓ')"/></xsl:call-template></xsl:when> <!--/ell - cursive small l -->
|
||||||
|
<xsl:when test="starts-with($content,'℘')"><xsl:value-of select="'\wp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '℘')"/></xsl:call-template></xsl:when> <!--/wp - Weierstrass p -->
|
||||||
|
<xsl:when test="starts-with($content,'ℜ')"><xsl:value-of select="'\Re '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℜ')"/></xsl:call-template></xsl:when> <!--/Re - real -->
|
||||||
|
<xsl:when test="starts-with($content,'℧')"><xsl:value-of select="'\mho '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '℧')"/></xsl:call-template></xsl:when> <!--/mho - conductance -->
|
||||||
|
<xsl:when test="starts-with($content,'ℵ')"><xsl:value-of select="'\aleph '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℵ')"/></xsl:call-template></xsl:when> <!--/aleph aleph, Hebrew -->
|
||||||
|
<xsl:when test="starts-with($content,'ℶ')"><xsl:value-of select="'\beth '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℶ')"/></xsl:call-template></xsl:when> <!--/beth - beth, Hebrew --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'ℷ')"><xsl:value-of select="'\gimel '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℷ')"/></xsl:call-template></xsl:when> <!--/gimel - gimel, Hebrew --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'ℸ')"><xsl:value-of select="'\daleth '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ℸ')"/></xsl:call-template></xsl:when> <!--/daleth - daleth, Hebrew --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'ⅅ')"><xsl:value-of select="'D'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ⅅ')"/></xsl:call-template></xsl:when> <!--D for use in differentials, e.g., within integrals -->
|
||||||
|
<xsl:when test="starts-with($content,'ⅆ')"><xsl:value-of select="'d'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ⅆ')"/></xsl:call-template></xsl:when> <!--d for use in differentials, e.g., within integrals -->
|
||||||
|
<xsl:when test="starts-with($content,'ⅇ')"><xsl:value-of select="'e'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ⅇ')"/></xsl:call-template></xsl:when> <!--e use for the exponential base of the natural logarithms -->
|
||||||
|
<xsl:when test="starts-with($content,'ⅈ')"><xsl:value-of select="'i'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, 'ⅈ')"/></xsl:call-template></xsl:when> <!--i for use as a square root of -1 -->
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<xsl:when test="starts-with($content,'→')"><xsl:value-of select="'\to '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '→')"/></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,'∀')"><xsl:value-of select="'\forall '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∀')"/></xsl:call-template></xsl:when> <!--/forall for all -->
|
||||||
|
<xsl:when test="starts-with($content,'∁')"><xsl:value-of select="'\complement '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∁')"/></xsl:call-template></xsl:when> <!--/complement - complement sign --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∂')"><xsl:value-of select="'\partial '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∂')"/></xsl:call-template></xsl:when> <!--/partial partial differential -->
|
||||||
|
<xsl:when test="starts-with($content,'∃')"><xsl:value-of select="'\exists '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∃')"/></xsl:call-template></xsl:when> <!--/exists at least one exists -->
|
||||||
|
<xsl:when test="starts-with($content,'∄')"><xsl:value-of select="'\nexists '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∄')"/></xsl:call-template></xsl:when> <!--/nexists - negated exists --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∅︀')"><xsl:value-of select="'\emptyset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∅︀')"/></xsl:call-template></xsl:when> <!--/emptyset - zero, slash -->
|
||||||
|
<xsl:when test="starts-with($content,'∅')"><xsl:value-of select="'\varnothing '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∅')"/></xsl:call-template></xsl:when> <!--/varnothing - circle, slash --> <!-- Required amssymb -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'∆')"><xsl:value-of select="' '" /><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="'\nabla '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∇')"/></xsl:call-template></xsl:when> <!--/nabla del, Hamilton operator -->
|
||||||
|
<xsl:when test="starts-with($content,'∈')"><xsl:value-of select="'\in '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∈')"/></xsl:call-template></xsl:when> <!--/in R: set membership -->
|
||||||
|
<xsl:when test="starts-with($content,'∉')"><xsl:value-of select="'\notin '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∉')"/></xsl:call-template></xsl:when> <!--/notin N: negated set membership -->
|
||||||
|
<xsl:when test="starts-with($content,'∋')"><xsl:value-of select="'\ni '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∋')"/></xsl:call-template></xsl:when> <!--/ni /owns R: contains -->
|
||||||
|
<xsl:when test="starts-with($content,'∌')"><xsl:value-of select="'\not\ni '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∌')"/></xsl:call-template></xsl:when> <!--negated contains -->
|
||||||
|
<xsl:when test="starts-with($content,'∏')"><xsl:value-of select="'\prod '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∏')"/></xsl:call-template></xsl:when> <!--/prod L: product operator -->
|
||||||
|
<xsl:when test="starts-with($content,'∐')"><xsl:value-of select="'\coprod '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∐')"/></xsl:call-template></xsl:when> <!--/coprod L: coproduct operator -->
|
||||||
|
<xsl:when test="starts-with($content,'∑')"><xsl:value-of select="'\sum '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∑')"/></xsl:call-template></xsl:when> <!--/sum L: summation operator -->
|
||||||
|
<xsl:when test="starts-with($content,'−')"><xsl:value-of select="'-'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '−')"/></xsl:call-template></xsl:when> <!--B: minus sign -->
|
||||||
|
<xsl:when test="starts-with($content,'∓')"><xsl:value-of select="'\mp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∓')"/></xsl:call-template></xsl:when> <!--/mp B: minus-or-plus sign -->
|
||||||
|
<xsl:when test="starts-with($content,'∔')"><xsl:value-of select="'\dotplus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∔')"/></xsl:call-template></xsl:when> <!--/dotplus B: plus sign, dot above --> <!-- Required amssymb -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'∕')"><xsl:value-of select="' '" /><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="'\setminus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∖')"/></xsl:call-template></xsl:when> <!--/setminus B: reverse solidus -->
|
||||||
|
<xsl:when test="starts-with($content,'∗')"><xsl:value-of select="'\ast '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∗')"/></xsl:call-template></xsl:when> <!--low asterisk -->
|
||||||
|
<xsl:when test="starts-with($content,'∘')"><xsl:value-of select="'\circ '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∘')"/></xsl:call-template></xsl:when> <!--/circ B: composite function (small circle) -->
|
||||||
|
<xsl:when test="starts-with($content,'∙')"><xsl:value-of select="'\bullet '" /><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="'\surd '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '√')"/></xsl:call-template></xsl:when> <!--/surd radical -->
|
||||||
|
<xsl:when test="starts-with($content,'∝')"><xsl:value-of select="'\propto '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∝')"/></xsl:call-template></xsl:when> <!--/propto R: is proportional to -->
|
||||||
|
<xsl:when test="starts-with($content,'∞')"><xsl:value-of select="'\infty '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∞')"/></xsl:call-template></xsl:when> <!--/infty infinity -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'∟')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∟')"/></xsl:call-template></xsl:when> right (90 degree) angle -->
|
||||||
|
<xsl:when test="starts-with($content,'∠')"><xsl:value-of select="'\angle '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∠')"/></xsl:call-template></xsl:when> <!--/angle - angle -->
|
||||||
|
<xsl:when test="starts-with($content,'∡')"><xsl:value-of select="'\measuredangle '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∡')"/></xsl:call-template></xsl:when> <!--/measuredangle - angle-measured --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∢')"><xsl:value-of select="'\sphericalangle '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∢')"/></xsl:call-template></xsl:when><!--/sphericalangle angle-spherical --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∣')"><xsl:value-of select="'\mid '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∣')"/></xsl:call-template></xsl:when> <!--/mid R: -->
|
||||||
|
<xsl:when test="starts-with($content,'∤︀')"><xsl:value-of select="'\nshortmid '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∤︀')"/></xsl:call-template></xsl:when> <!--/nshortmid --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∤')"><xsl:value-of select="'\nmid '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∤')"/></xsl:call-template></xsl:when> <!--/nmid --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∥')"><xsl:value-of select="'\parallel '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∥')"/></xsl:call-template></xsl:when> <!--/parallel R: parallel -->
|
||||||
|
<xsl:when test="starts-with($content,'∦︀')"><xsl:value-of select="'\nshortparallel '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∦︀')"/></xsl:call-template></xsl:when> <!--/nshortparallel N: not short par --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∦')"><xsl:value-of select="'\nparallel '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∦')"/></xsl:call-template></xsl:when> <!--/nparallel N: not parallel --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∧')"><xsl:value-of select="'\wedge '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∧')"/></xsl:call-template></xsl:when> <!--/wedge /land B: logical and -->
|
||||||
|
<xsl:when test="starts-with($content,'∨')"><xsl:value-of select="'\vee '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∨')"/></xsl:call-template></xsl:when> <!--/vee /lor B: logical or -->
|
||||||
|
<xsl:when test="starts-with($content,'∩')"><xsl:value-of select="'\cap '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∩')"/></xsl:call-template></xsl:when> <!--/cap B: intersection -->
|
||||||
|
<xsl:when test="starts-with($content,'∪')"><xsl:value-of select="'\cup '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∪')"/></xsl:call-template></xsl:when> <!--/cup B: union or logical sum -->
|
||||||
|
<xsl:when test="starts-with($content,'∫')"><xsl:value-of select="'\int '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∫')"/></xsl:call-template></xsl:when> <!--/int L: integral operator -->
|
||||||
|
<xsl:when test="starts-with($content,'∬')"><xsl:value-of select="'\iint '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∬')"/></xsl:call-template></xsl:when> <!--double integral operator --> <!-- Required amsmath -->
|
||||||
|
<xsl:when test="starts-with($content,'∭')"><xsl:value-of select="'\iiint '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∭')"/></xsl:call-template></xsl:when> <!--/iiint triple integral operator --> <!-- Required amsmath -->
|
||||||
|
<xsl:when test="starts-with($content,'∮')"><xsl:value-of select="'\oint '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∮')"/></xsl:call-template></xsl:when> <!--/oint L: contour integral operator -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'∯')"><xsl:value-of select="' '" /><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="' '" /><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="' '" /><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="' '" /><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="' '" /><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="'\therefore '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∴')"/></xsl:call-template></xsl:when> <!--/therefore R: therefore --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'∵')"><xsl:value-of select="'\because '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∵')"/></xsl:call-template></xsl:when> <!--/because R: because --> <!-- Required amssymb -->
|
||||||
|
<!-- ? --> <xsl:when test="starts-with($content,'∶')"><xsl:value-of select="':'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∶')"/></xsl:call-template></xsl:when> <!--/ratio -->
|
||||||
|
<!-- ? --> <xsl:when test="starts-with($content,'∷')"><xsl:value-of select="'\colon\colon '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∷')"/></xsl:call-template></xsl:when> <!--/Colon, two colons -->
|
||||||
|
<!-- ? --> <xsl:when test="starts-with($content,'∸')"><xsl:value-of select="'\dot{-}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∸')"/></xsl:call-template></xsl:when> <!--/dotminus B: minus sign, dot above -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'∹')"><xsl:value-of select="' '" /><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="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∺')"/></xsl:call-template></xsl:when> minus with four dots, geometric properties -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'∻')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∻')"/></xsl:call-template></xsl:when> homothetic -->
|
||||||
|
<xsl:when test="starts-with($content,'∼')"><xsl:value-of select="'\sim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∼')"/></xsl:call-template></xsl:when> <!--/sim R: similar -->
|
||||||
|
<xsl:when test="starts-with($content,'∽')"><xsl:value-of select="'\backsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∽')"/></xsl:call-template></xsl:when> <!--/backsim R: reverse similar --> <!-- Required amssymb -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'∾')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∾')"/></xsl:call-template></xsl:when> most positive -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'∿')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '∿')"/></xsl:call-template></xsl:when> ac current -->
|
||||||
|
<xsl:when test="starts-with($content,'≀')"><xsl:value-of select="'\wr '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≀')"/></xsl:call-template></xsl:when> <!--/wr B: wreath product -->
|
||||||
|
<xsl:when test="starts-with($content,'≁')"><xsl:value-of select="'\nsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≁')"/></xsl:call-template></xsl:when> <!--/nsim N: not similar --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≂')"><xsl:value-of select="'\eqsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≂')"/></xsl:call-template></xsl:when> <!--/esim R: equals, similar --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≃')"><xsl:value-of select="'\simeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≃')"/></xsl:call-template></xsl:when> <!--/simeq R: similar, equals -->
|
||||||
|
<xsl:when test="starts-with($content,'≄')"><xsl:value-of select="'\not\simeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≄')"/></xsl:call-template></xsl:when> <!--/nsimeq N: not similar, equals -->
|
||||||
|
<xsl:when test="starts-with($content,'≅')"><xsl:value-of select="'\cong '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≅')"/></xsl:call-template></xsl:when> <!--/cong R: congruent with -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≆')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≆')"/></xsl:call-template></xsl:when> similar, not equals -->
|
||||||
|
<xsl:when test="starts-with($content,'≇')"><xsl:value-of select="'\ncong '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≇')"/></xsl:call-template></xsl:when> <!--/ncong N: not congruent with --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≈')"><xsl:value-of select="'\approx '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≈')"/></xsl:call-template></xsl:when> <!--/approx R: approximate -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≉̸')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≉̸')"/></xsl:call-template></xsl:when> not, vert, approximate -->
|
||||||
|
<xsl:when test="starts-with($content,'≉')"><xsl:value-of select="'\not\approx '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≉')"/></xsl:call-template></xsl:when> <!--/napprox N: not approximate -->
|
||||||
|
<xsl:when test="starts-with($content,'≊')"><xsl:value-of select="'\approxeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≊')"/></xsl:call-template></xsl:when> <!--/approxeq R: approximate, equals --> <!-- Required amssymb -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≋')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≋')"/></xsl:call-template></xsl:when> approximately identical to -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≌')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≌')"/></xsl:call-template></xsl:when> /backcong R: reverse congruent -->
|
||||||
|
<xsl:when test="starts-with($content,'≍')"><xsl:value-of select="'\asymp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≍')"/></xsl:call-template></xsl:when> <!--/asymp R: asymptotically equal to -->
|
||||||
|
<xsl:when test="starts-with($content,'≎')"><xsl:value-of select="'\Bumpeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≎')"/></xsl:call-template></xsl:when> <!--/Bumpeq R: bumpy equals --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≏')"><xsl:value-of select="'\bumpeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≏')"/></xsl:call-template></xsl:when> <!--/bumpeq R: bumpy equals, equals --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≐')"><xsl:value-of select="'\doteq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≐')"/></xsl:call-template></xsl:when> <!--/doteq R: equals, single dot above -->
|
||||||
|
<xsl:when test="starts-with($content,'≑')"><xsl:value-of select="'\doteqdot '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≑')"/></xsl:call-template></xsl:when> <!--/doteqdot /Doteq R: eq, even dots --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≒')"><xsl:value-of select="'\fallingdotseq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≒')"/></xsl:call-template></xsl:when> <!--/fallingdotseq R: eq, falling dots --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≓')"><xsl:value-of select="'\risingdotseq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≓')"/></xsl:call-template></xsl:when> <!--/risingdotseq R: eq, rising dots --> <!-- Required amssymb -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≔')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≔')"/></xsl:call-template></xsl:when> /coloneq R: colon, equals -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≕')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≕')"/></xsl:call-template></xsl:when> /eqcolon R: equals, colon -->
|
||||||
|
<xsl:when test="starts-with($content,'≖')"><xsl:value-of select="'\eqcirc '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≖')"/></xsl:call-template></xsl:when> <!--/eqcirc R: circle on equals sign --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≗')"><xsl:value-of select="'\circeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≗')"/></xsl:call-template></xsl:when> <!--/circeq R: circle, equals --> <!-- Required amssymb -->
|
||||||
|
<!-- ? --> <xsl:when test="starts-with($content,'≘')"><xsl:value-of select="'\stackrel{\frown}{=}'" /><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="'\stackrel{\wedge}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≙')"/></xsl:call-template></xsl:when> <!--/wedgeq R: corresponds to (wedge, equals) -->
|
||||||
|
<!-- ? --> <xsl:when test="starts-with($content,'≚')"><xsl:value-of select="'\stackrel{\vee}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≚')"/></xsl:call-template></xsl:when> <!--logical or, equals -->
|
||||||
|
<!-- ? --> <xsl:when test="starts-with($content,'≛')"><xsl:value-of select="'\stackrel{\star}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≛')"/></xsl:call-template></xsl:when> <!--equal, asterisk above -->
|
||||||
|
<xsl:when test="starts-with($content,'≜')"><xsl:value-of select="'\triangleq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≜')"/></xsl:call-template></xsl:when> <!--/triangleq R: triangle, equals --> <!-- Required amssymb -->
|
||||||
|
<!-- ? --> <xsl:when test="starts-with($content,'≝')"><xsl:value-of select="'\stackrel{\scriptscriptstyle\mathrm{def}}{=}'" /><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="'\stackrel{\scriptscriptstyle\mathrm{m}}{=}'" /><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="'\stackrel{?}{=}'" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≟')"/></xsl:call-template></xsl:when> <!--/questeq R: equal with questionmark -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≠︀')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≠︀')"/></xsl:call-template></xsl:when> not equal, dot -->
|
||||||
|
<xsl:when test="starts-with($content,'≠')"><xsl:value-of select="'\ne '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≠')"/></xsl:call-template></xsl:when> <!--/ne /neq R: not equal -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≡⃥')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≡⃥')"/></xsl:call-template></xsl:when> reverse not equivalent -->
|
||||||
|
<xsl:when test="starts-with($content,'≡')"><xsl:value-of select="'\equiv '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≡')"/></xsl:call-template></xsl:when> <!--/equiv R: identical with -->
|
||||||
|
<xsl:when test="starts-with($content,'≢')"><xsl:value-of select="'\not\equiv '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≢')"/></xsl:call-template></xsl:when> <!--/nequiv N: not identical with -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≣')"><xsl:value-of select="' '" /><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="'\le '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≤')"/></xsl:call-template></xsl:when> <!--/leq /le R: less-than-or-equal -->
|
||||||
|
<xsl:when test="starts-with($content,'≥')"><xsl:value-of select="'\ge '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≥')"/></xsl:call-template></xsl:when> <!--/geq /ge R: greater-than-or-equal -->
|
||||||
|
<xsl:when test="starts-with($content,'≦')"><xsl:value-of select="'\leqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≦')"/></xsl:call-template></xsl:when> <!--/leqq R: less, double equals --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≧')"><xsl:value-of select="'\geqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≧')"/></xsl:call-template></xsl:when> <!--/geqq R: greater, double equals --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≨')"><xsl:value-of select="'\lneqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≨')"/></xsl:call-template></xsl:when> <!--/lneqq N: less, not double equals --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≩')"><xsl:value-of select="'\gneqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≩')"/></xsl:call-template></xsl:when> <!--/gneqq N: greater, not dbl equals --> <!-- Required amssymb -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≪̸︀')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≪̸︀')"/></xsl:call-template></xsl:when> not much less than, variant -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≪̸')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≪̸')"/></xsl:call-template></xsl:when> not, vert, much less than -->
|
||||||
|
<xsl:when test="starts-with($content,'≪')"><xsl:value-of select="'\ll '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≪')"/></xsl:call-template></xsl:when> <!--/ll R: double less-than sign -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≫̸︀')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≫̸︀')"/></xsl:call-template></xsl:when> not much greater than, variant -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'≫̸')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≫̸')"/></xsl:call-template></xsl:when> not, vert, much greater than -->
|
||||||
|
<xsl:when test="starts-with($content,'≫')"><xsl:value-of select="'\gg '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≫')"/></xsl:call-template></xsl:when> <!--/gg R: dbl greater-than sign -->
|
||||||
|
<xsl:when test="starts-with($content,'≬')"><xsl:value-of select="'\between '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≬')"/></xsl:call-template></xsl:when> <!--/between R: between --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≭')"><xsl:value-of select="'\not\asymp '" /><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="'\nless '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≮')"/></xsl:call-template></xsl:when> <!--/nless N: not less-than --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≯')"><xsl:value-of select="'\ngtr '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≯')"/></xsl:call-template></xsl:when> <!--/ngtr N: not greater-than --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≰⃥')"><xsl:value-of select="'\nleq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≰⃥')"/></xsl:call-template></xsl:when> <!--/nleq N: not less-than-or-equal --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≰')"><xsl:value-of select="'\nleqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≰')"/></xsl:call-template></xsl:when> <!--/nleqq N: not less, dbl equals --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≱⃥')"><xsl:value-of select="'\ngeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≱⃥')"/></xsl:call-template></xsl:when> <!--/ngeq N: not greater-than-or-equal --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≱')"><xsl:value-of select="'\ngeqq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≱')"/></xsl:call-template></xsl:when> <!--/ngeqq N: not greater, dbl equals --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≲')"><xsl:value-of select="'\lesssim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≲')"/></xsl:call-template></xsl:when> <!--/lesssim R: less, similar --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≳')"><xsl:value-of select="'\gtrsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≳')"/></xsl:call-template></xsl:when> <!--/gtrsim R: greater, similar --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≴')"><xsl:value-of select="'\not\lesssim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≴')"/></xsl:call-template></xsl:when> <!--not less, similar --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≵')"><xsl:value-of select="'\not\gtrsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≵')"/></xsl:call-template></xsl:when> <!--not greater, similar --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≶')"><xsl:value-of select="'\lessgtr '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≶')"/></xsl:call-template></xsl:when> <!--/lessgtr R: less, greater --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≷')"><xsl:value-of select="'\gtrless '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≷')"/></xsl:call-template></xsl:when> <!--/gtrless R: greater, less --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≸')"><xsl:value-of select="'\not\lessgtr '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≸')"/></xsl:call-template></xsl:when> <!--not less, greater --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≹')"><xsl:value-of select="'\not\gtrless '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≹')"/></xsl:call-template></xsl:when> <!--not greater, less --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≺')"><xsl:value-of select="'\prec '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≺')"/></xsl:call-template></xsl:when> <!--/prec R: precedes -->
|
||||||
|
<xsl:when test="starts-with($content,'≻')"><xsl:value-of select="'\succ '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≻')"/></xsl:call-template></xsl:when> <!--/succ R: succeeds -->
|
||||||
|
<xsl:when test="starts-with($content,'≼')"><xsl:value-of select="'\preccurlyeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≼')"/></xsl:call-template></xsl:when> <!--/preccurlyeq R: precedes, curly eq --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≽')"><xsl:value-of select="'\succcurlyeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≽')"/></xsl:call-template></xsl:when> <!--/succcurlyeq R: succeeds, curly eq --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≾')"><xsl:value-of select="'\precsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≾')"/></xsl:call-template></xsl:when> <!--/precsim R: precedes, similar --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'≿')"><xsl:value-of select="'\succsim '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '≿')"/></xsl:call-template></xsl:when> <!--/succsim R: succeeds, similar --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'⊀')"><xsl:value-of select="'\nprec '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊀')"/></xsl:call-template></xsl:when> <!--/nprec N: not precedes --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'⊁')"><xsl:value-of select="'\nsucc '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊁')"/></xsl:call-template></xsl:when> <!--/nsucc N: not succeeds --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'⊂')"><xsl:value-of select="'\subset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊂')"/></xsl:call-template></xsl:when> <!--/subset R: subset or is implied by -->
|
||||||
|
<xsl:when test="starts-with($content,'⊃')"><xsl:value-of select="'\supset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊃')"/></xsl:call-template></xsl:when> <!--/supset R: superset or implies -->
|
||||||
|
<xsl:when test="starts-with($content,'⊄')"><xsl:value-of select="'\not\subset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊄')"/></xsl:call-template></xsl:when> <!--not subset -->
|
||||||
|
<xsl:when test="starts-with($content,'⊅')"><xsl:value-of select="'\not\supset '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊅')"/></xsl:call-template></xsl:when> <!--not superset -->
|
||||||
|
<xsl:when test="starts-with($content,'⊆')"><xsl:value-of select="'\subseteq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊆')"/></xsl:call-template></xsl:when> <!--/subseteq R: subset, equals -->
|
||||||
|
<xsl:when test="starts-with($content,'⊇')"><xsl:value-of select="'\supseteq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊇')"/></xsl:call-template></xsl:when> <!--/supseteq R: superset, equals -->
|
||||||
|
<xsl:when test="starts-with($content,'⊎')"><xsl:value-of select="'\uplus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊎')"/></xsl:call-template></xsl:when> <!--/uplus B: plus sign in union -->
|
||||||
|
<xsl:when test="starts-with($content,'⊓')"><xsl:value-of select="'\sqcap '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊓')"/></xsl:call-template></xsl:when> <!--/sqcap B: square intersection -->
|
||||||
|
<xsl:when test="starts-with($content,'⊔')"><xsl:value-of select="'\bigsqcup '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊔')"/></xsl:call-template></xsl:when> <!--/sqcup B: square union -->
|
||||||
|
<xsl:when test="starts-with($content,'⊕')"><xsl:value-of select="'\oplus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊕')"/></xsl:call-template></xsl:when> <!--/oplus B: plus sign in circle -->
|
||||||
|
<xsl:when test="starts-with($content,'⊖')"><xsl:value-of select="'\ominus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊖')"/></xsl:call-template></xsl:when> <!--/ominus B: minus sign in circle -->
|
||||||
|
<xsl:when test="starts-with($content,'⊗')"><xsl:value-of select="'\otimes '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊗')"/></xsl:call-template></xsl:when> <!--/otimes B: multiply sign in circle -->
|
||||||
|
<xsl:when test="starts-with($content,'⊘')"><xsl:value-of select="'\oslash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊘')"/></xsl:call-template></xsl:when> <!--/oslash B: solidus in circle -->
|
||||||
|
<!-- ? --> <xsl:when test="starts-with($content,'⊙')"><xsl:value-of select="'\odot '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊙')"/></xsl:call-template></xsl:when> <!--/odot B: middle dot in circle --> <!--/bigodot L: circle dot operator -->
|
||||||
|
<xsl:when test="starts-with($content,'⊟')"><xsl:value-of select="'\boxminus '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊟')"/></xsl:call-template></xsl:when> <!--/boxminus B: minus sign in box --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'⊤')"><xsl:value-of select="'\top '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊤')"/></xsl:call-template></xsl:when> <!--/top top -->
|
||||||
|
<xsl:when test="starts-with($content,'⊥')"><xsl:value-of select="'\perp '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊥')"/></xsl:call-template></xsl:when> <!--/perp R: perpendicular --><!--/bot bottom -->
|
||||||
|
<xsl:when test="starts-with($content,'⊦')"><xsl:value-of select="'\vdash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊦')"/></xsl:call-template></xsl:when> <!--/vdash R: vertical, dash -->
|
||||||
|
<xsl:when test="starts-with($content,'⊧')"><xsl:value-of select="'\vDash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊧')"/></xsl:call-template></xsl:when> <!--/vDash R: vertical, dbl dash --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'⊨')"><xsl:value-of select="'\models '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊨')"/></xsl:call-template></xsl:when> <!--/models R: -->
|
||||||
|
<xsl:when test="starts-with($content,'⊪')"><xsl:value-of select="'\Vvdash '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⊪')"/></xsl:call-template></xsl:when> <!--/Vvdash R: triple vertical, dash --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'⋀')"><xsl:value-of select="'\bigwedge '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋀')"/></xsl:call-template></xsl:when> <!--/bigwedge L: logical or operator -->
|
||||||
|
<xsl:when test="starts-with($content,'⋁')"><xsl:value-of select="'\bigvee '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋁')"/></xsl:call-template></xsl:when> <!--/bigcap L: intersection operator -->
|
||||||
|
<xsl:when test="starts-with($content,'⋂')"><xsl:value-of select="'\bigcap '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋂')"/></xsl:call-template></xsl:when> <!--/bigvee L: logical and operator -->
|
||||||
|
<xsl:when test="starts-with($content,'⋃')"><xsl:value-of select="'\bigcup '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋃')"/></xsl:call-template></xsl:when> <!--/bigcup L: union operator -->
|
||||||
|
<xsl:when test="starts-with($content,'⋄')"><xsl:value-of select="'\diamond '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋄')"/></xsl:call-template></xsl:when> <!--/diamond B: open diamond -->
|
||||||
|
<xsl:when test="starts-with($content,'⋅')"><xsl:value-of select="'\cdot '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋅')"/></xsl:call-template></xsl:when> <!--/cdot B: small middle dot -->
|
||||||
|
<xsl:when test="starts-with($content,'⋆')"><xsl:value-of select="'\star '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋆')"/></xsl:call-template></xsl:when> <!--/star B: small star, filled -->
|
||||||
|
<xsl:when test="starts-with($content,'⋇')"><xsl:value-of select="'\divideontimes '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋇')"/></xsl:call-template></xsl:when> <!--/divideontimes B: division on times --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'⋈')"><xsl:value-of select="'\bowtie '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋈')"/></xsl:call-template></xsl:when> <!--/bowtie R: -->
|
||||||
|
<xsl:when test="starts-with($content,'⋍')"><xsl:value-of select="'\backsimeq '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋍')"/></xsl:call-template></xsl:when> <!--/backsimeq R: reverse similar, eq --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'⋯')"><xsl:value-of select="'\cdots '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋯')"/></xsl:call-template></xsl:when> <!--/cdots, three dots, centered -->
|
||||||
|
<!-- <xsl:when test="starts-with($content,'⋰')"><xsl:value-of select="' '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋰')"/></xsl:call-template></xsl:when> three dots, ascending -->
|
||||||
|
<xsl:when test="starts-with($content,'⋱')"><xsl:value-of select="'\ddots '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '⋱')"/></xsl:call-template></xsl:when> <!--/ddots, three dots, descending -->
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<xsl:when test="starts-with($content,'□')"><xsl:value-of select="'\square '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '□')"/></xsl:call-template></xsl:when> <!--/square, square --> <!-- Required amssymb -->
|
||||||
|
<xsl:when test="starts-with($content,'▪')"><xsl:value-of select="'\blacksquare '" /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select="substring-after($content, '▪')"/></xsl:call-template></xsl:when> <!--/blacksquare, square, filled --> <!-- Required amssymb -->
|
||||||
|
|
||||||
|
<xsl:when test='starts-with($content,"'")'><xsl:value-of select='"\text{'}"' /><xsl:call-template name="replaceEntities"><xsl:with-param name="content" select='substring-after($content, "'")'/></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,'   ')"> <!-- ThickSpace - space of width 5/18 em -->
|
||||||
|
<xsl:call-template name="replaceMtextEntities">
|
||||||
|
<xsl:with-param name="content" select="concat(substring-before($content,'   '),'\hspace{0.28em}',substring-after($content,'   '))"/>
|
||||||
|
</xsl:call-template>
|
||||||
|
</xsl:when>
|
||||||
|
<xsl:when test="contains($content,' ')"> <!-- ThinSpace - space of width 3/18 em -->
|
||||||
|
<xsl:call-template name="replaceMtextEntities">
|
||||||
|
<xsl:with-param name="content" select="concat(substring-before($content,' '),'\hspace{0.17em}',substring-after($content,' '))"/>
|
||||||
|
</xsl:call-template>
|
||||||
|
</xsl:when>
|
||||||
|
<xsl:otherwise>
|
||||||
|
<xsl:value-of select="normalize-space($content)"/>
|
||||||
|
</xsl:otherwise>
|
||||||
|
</xsl:choose>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
220
src/xsl/glayout.xsl
Normal file
220
src/xsl/glayout.xsl
Normal file
|
|
@ -0,0 +1,220 @@
|
||||||
|
<?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'>
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<!-- $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 argumnets 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>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
45
src/xsl/mmltex.xsl
Normal file
45
src/xsl/mmltex.xsl
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
<?xml version='1.0' encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
|
xmlns:m="http://www.w3.org/1998/Math/MathML"
|
||||||
|
version='1.0'>
|
||||||
|
|
||||||
|
<xsl:output method="text" indent="no" encoding="UTF-8"/>
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<!-- $id: mmltex.xsl, 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:include href="tokens.xsl"/>
|
||||||
|
<xsl:include href="glayout.xsl"/>
|
||||||
|
<xsl:include href="scripts.xsl"/>
|
||||||
|
<xsl:include href="tables.xsl"/>
|
||||||
|
<xsl:include href="entities.xsl"/>
|
||||||
|
<xsl:include href="cmarkup.xsl"/>
|
||||||
|
|
||||||
|
<!-- 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>$</xsl:text>
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>$</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
2068
src/xsl/omml2mml.xsl
Normal file
2068
src/xsl/omml2mml.xsl
Normal file
File diff suppressed because it is too large
Load diff
292
src/xsl/scripts.xsl
Normal file
292
src/xsl/scripts.xsl
Normal file
|
|
@ -0,0 +1,292 @@
|
||||||
|
<?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'>
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<!-- $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='¯'"> <!-- 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='︷'"> <!-- 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='̲'"> <!-- 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='︸'"> <!-- 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,'∏∐⋂⋃⊔',
|
||||||
|
'∑∑∑∑∑')='∑'">
|
||||||
|
<!-- if $base is operator, such as
|
||||||
|
∑ /sum L: summation operator
|
||||||
|
∏ /prod L: product operator
|
||||||
|
∐ /coprod L: coproduct operator
|
||||||
|
⋂ /bigcap
|
||||||
|
⋃ /bigcup
|
||||||
|
⊔ /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='¯'"> <!-- OverBar - over bar -->
|
||||||
|
<xsl:text>\overline{</xsl:text>
|
||||||
|
<xsl:apply-templates select="./*[1]"/>
|
||||||
|
<xsl:text>}</xsl:text>
|
||||||
|
</xsl:when>
|
||||||
|
<xsl:when test="$over='︷'"> <!-- OverBrace - over brace -->
|
||||||
|
<xsl:text>\overbrace{</xsl:text>
|
||||||
|
<xsl:apply-templates select="./*[1]"/>
|
||||||
|
<xsl:text>}</xsl:text>
|
||||||
|
</xsl:when>
|
||||||
|
<xsl:when test="translate($base,'∏∐⋂⋃⊔',
|
||||||
|
'∑∑∑∑∑')='∑'">
|
||||||
|
<!-- if $base is operator, such as
|
||||||
|
∑ /sum L: summation operator
|
||||||
|
∏ /prod L: product operator
|
||||||
|
∐ /coprod L: coproduct operator
|
||||||
|
⋂ /bigcap
|
||||||
|
⋃ /bigcup
|
||||||
|
⊔ /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='̲'"> <!-- UnderBar - combining low line -->
|
||||||
|
<xsl:text>\underline{</xsl:text>
|
||||||
|
<xsl:apply-templates select="./*[1]"/>
|
||||||
|
<xsl:text>}</xsl:text>
|
||||||
|
</xsl:when>
|
||||||
|
<xsl:when test="$under='︸'"> <!-- UnderBrace - under brace -->
|
||||||
|
<xsl:text>\underbrace{</xsl:text>
|
||||||
|
<xsl:apply-templates select="./*[1]"/>
|
||||||
|
<xsl:text>}</xsl:text>
|
||||||
|
</xsl:when>
|
||||||
|
<xsl:when test="translate($base,'∏∐⋂⋃⊔',
|
||||||
|
'∑∑∑∑∑')='∑'">
|
||||||
|
<!-- if $base is operator, such as
|
||||||
|
∑ /sum L: summation operator
|
||||||
|
∏ /prod L: product operator
|
||||||
|
∐ /coprod L: coproduct operator
|
||||||
|
⋂ /bigcap
|
||||||
|
⋃ /bigcup
|
||||||
|
⊔ /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>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
130
src/xsl/tables.xsl
Normal file
130
src/xsl/tables.xsl
Normal file
|
|
@ -0,0 +1,130 @@
|
||||||
|
<?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'>
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<!-- $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>& </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>& </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) < $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 <= 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>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
296
src/xsl/tokens.xsl
Normal file
296
src/xsl/tokens.xsl
Normal file
|
|
@ -0,0 +1,296 @@
|
||||||
|
<?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'>
|
||||||
|
|
||||||
|
<!-- ====================================================================== -->
|
||||||
|
<!-- $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 specifed 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>
|
||||||
Loading…
Reference in a new issue