
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@5 f0f2a975-2e09-46c8-9428-3b39399b9f3c
872 lines
25 KiB
XML
872 lines
25 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!--
|
|
Presentation MathML Stylesheet
|
|
-->
|
|
|
|
<!--
|
|
$Id: pmathmlcss.xsl,v 1.1 2002/03/20 12:20:57 mf Exp $
|
|
|
|
Copyright David Carlisle 2001, 2002.
|
|
|
|
Use and distribution of this code are permitted under the terms of the <a
|
|
href="http://www.w3.org/Consortium/Legal/copyright-software-19980720"
|
|
>W3C Software Notice and License</a>.
|
|
-->
|
|
|
|
<xsl:stylesheet
|
|
version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:h="http://www.w3.org/1999/xhtml"
|
|
xmlns:m="http://www.w3.org/1998/Math/MathML"
|
|
xmlns:doc="http://www.dcarlisle.demon.co.uk/xsldoc"
|
|
xmlns:x="data:,x"
|
|
exclude-result-prefixes="x h doc"
|
|
>
|
|
|
|
<h:h2>Dictionary</h:h2>
|
|
|
|
<h:p> The following elements in the x: namespace form an
|
|
implementation of an "Operator Dictionary" for this MathML
|
|
Implementation. In the case of stretch operators, the element
|
|
specifies the symbol parts via the latin-1 equivalent character based
|
|
on the encoding in the symbol font. It is a clear "failure to comply
|
|
to the spec" that using latin 1 characters (or numeric character
|
|
references) in the latin 1 range access glyphs in teh symbol font via
|
|
font position, however most of these character parts are not in
|
|
Unicode (until 3.2), so there is no standard way to access these characters.</h:p>
|
|
|
|
<x:x x="{" m="0em" stretch="true" top="ì" middle="í" extend="ï" bottom="î">{</x:x>
|
|
<x:x x="}" m="0em" stretch="true" top="ü" middle="ý" extend="ú" bottom="þ">{</x:x>
|
|
|
|
<x:x x="(" m="0em" stretch="true" top="æ" middle="ç" extend="ç" bottom="è">(</x:x>
|
|
<x:x x=")" m="0em" stretch="true" top="ö" middle="÷" extend="÷" bottom="ø">)</x:x>
|
|
|
|
<x:x x="[" m="0em" stretch="true" top="é" middle="ê" extend="ê" bottom="ë">[</x:x>
|
|
<x:x x="]" m="0em" stretch="true" top="ù" middle="ú" extend="ú" bottom="û">]</x:x>
|
|
|
|
<x:x x="〚" m="0em" stretch="true" top="éé" middle="êê" extend="êê" bottom="ëë">[[</x:x>
|
|
<x:x x="〛" m="0em" stretch="true" top="ùù" middle="úú" extend="úú" bottom="ûû">]]</x:x>
|
|
|
|
<x:x x="|" m="0em" stretch="true" top="ç" middle="ç" extend="ç" bottom="ç">|</x:x>
|
|
<x:x x="||" m="0em" stretch="true" top="çç" middle="çç" extend="çç" bottom="çç">||</x:x>
|
|
|
|
<x:x x="⁡" m="0em"></x:x><!-- applyfunction -->
|
|
<x:x x="⁢" m="0em"></x:x><!-- invisibletimes -->
|
|
<x:x x="-">−</x:x>
|
|
<x:x x="≃"><span style="position:
|
|
relative; top: +.1em;">−</span><span style="position:
|
|
relative; left: -.55em; top: -.2em; margin: 0em;">~</span></x:x>
|
|
<x:x x="︸" m="0em">_v_</x:x>
|
|
|
|
|
|
<h:p>Remove these for now, as XML parser in IE6 is broken and doesn't
|
|
accept plane 1 characters.</h:p>
|
|
<!--
|
|
<x:x x="𝔸" v="doublestruck">A</x:x>
|
|
<x:x x="𝔹" v="doublestruck">B</x:x>
|
|
<x:x x="ℂ" v="doublestruck">C</x:x>
|
|
<x:x x="𝔻" v="doublestruck">D</x:x>
|
|
|
|
<x:x x="𝕒" v="doublestruck">a</x:x>
|
|
<x:x x="𝕓" v="doublestruck">b</x:x>
|
|
<x:x x="𝕔" v="doublestruck">c</x:x>
|
|
<x:x x="𝕕" v="doublestruck">d</x:x>
|
|
|
|
<x:x x="𝔄" v="fraktur">A</x:x>
|
|
<x:x x="𝔅" v="fraktur">B</x:x>
|
|
<x:x x="ℭ" v="fraktur">C</x:x>
|
|
<x:x x="𝔇" v="fraktur">D</x:x>
|
|
|
|
<x:x x="𝔞" v="fraktur">a</x:x>
|
|
<x:x x="𝔟" v="fraktur">b</x:x>
|
|
<x:x x="𝔠" v="fraktur">c</x:x>
|
|
<x:x x="𝔡" v="fraktur">d</x:x>
|
|
-->
|
|
|
|
<h:p>Grab all of the above into a variable.</h:p>
|
|
<xsl:variable name="opdict" select="document('')/*/x:x"/>
|
|
|
|
<h:h2>HTML elements</h:h2>
|
|
|
|
<h:p>
|
|
XHTML elements get passed straight through, sans namespace prefix.
|
|
</h:p>
|
|
<xsl:template match="h:*">
|
|
<xsl:element name="{local-name(.)}">
|
|
<xsl:copy-of select="@*"/>
|
|
<xsl:apply-templates/>
|
|
</xsl:element>
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
<h:p>
|
|
Template for the head element copies the original content, aand in
|
|
addition adds a script element and CSS style element that implement
|
|
the core of the MathML renderer.
|
|
</h:p>
|
|
|
|
<h:p doc:ref="malign">
|
|
The malign function first finds the left most item in the aligngroup, and
|
|
then modifies the left margin of each item to make them
|
|
align. (Currently only left alignment is supported.)
|
|
</h:p>
|
|
|
|
<h:p doc:ref="mrowStretch">
|
|
The mrowStretch function implements stretchy brackets. It is called
|
|
repeatedly, once for each mo child,after a span corresponding to an
|
|
mrow. The arguments are the id of teh span and the characters to use
|
|
for the parts of the stretch operator.
|
|
constructed fence. The
|
|
</h:p>
|
|
|
|
<h:p doc:ref="css">
|
|
Inline CSS style block handles all font and size specification for the
|
|
various MathML operators.
|
|
</h:p>
|
|
|
|
<xsl:template match="h:head">
|
|
|
|
<xsl:element name="{local-name(.)}">
|
|
<xsl:copy-of select="@*"/>
|
|
<xsl:apply-templates/>
|
|
|
|
<script>
|
|
|
|
<xsl:text doc:id="malign">
|
|
function malign (l)
|
|
{
|
|
var m = 0;
|
|
for ( i = 0; i < l.length ; i++)
|
|
{
|
|
m = Math.max(m,l[i].offsetLeft);
|
|
}
|
|
for ( i = 0; i < l.length ; i++)
|
|
{
|
|
l[i].style.marginLeft=m - l[i].offsetLeft;
|
|
}
|
|
}
|
|
</xsl:text>
|
|
|
|
<xsl:text doc:id="mrowStretch">
|
|
function mrowStretch (opid,opt,ope,opm,opb){
|
|
opH = opid.offsetHeight;
|
|
var opH;
|
|
var i;
|
|
var es;
|
|
if (mrowH > opH * 2) {
|
|
m= "<font size='+1' face='symbol'>" + opm + "</font><br/>" ;
|
|
if ((mrowH < opH * 3) &&(opm == ope) ) m="";
|
|
es="";
|
|
for ( i = 3; i <= mrowH / (2*opH) ; i += 1) es += "<font size='+1' face='symbol'>" + ope + "</font><br/>" ;
|
|
opid.innerHTML="<table class='lr'><tr><td><font size='+1' face='symbol'>" +
|
|
opt + "</font><br/>" +
|
|
es +
|
|
m +
|
|
es +
|
|
"<font size='+1' face='symbol'>" + opb + "</font></td></tr></table>";
|
|
}
|
|
}
|
|
</xsl:text>
|
|
|
|
<xsl:text doc:id="msubsup">
|
|
function msubsup (bs,bbs,x,b,p){
|
|
<!--
|
|
p.style.setExpression("top",bs +" .offsetTop - " + (p.offsetHeight/2 +(bbs.offsetHeight - Math.max(bbs.offsetHeight, b.offsetHeight + p.offsetHeight)*.5)));
|
|
-->
|
|
p.style.setExpression("top",bs +" .offsetTop -" + (p.offsetHeight/2));
|
|
b.style.setExpression("top",bs + ".offsetTop + " + (bbs.offsetHeight - b.offsetHeight*.5));
|
|
x.style.setExpression("marginLeft",Math.max(p.offsetWidth,b.offsetWidth));
|
|
document.recalc(true);
|
|
}
|
|
</xsl:text>
|
|
|
|
<!--
|
|
function msubsupzz (bs,x,b,p){
|
|
p.style.setExpression("top",bs +" .offsetTop - " + bs +
|
|
"p.offsetHeight/2 +(" + bs + ".offsetHeight - Math.max(" + bs + ".offsetHeight, (" + bs + "b.offsetHeight + " + bs + "p.offsetHeight)*.5))");
|
|
b.style.setExpression("top",bs + ".offsetTop + " + bs + ".offsetHeight - " + bs + "b.offsetHeight/2");
|
|
x.style.setExpression("marginLeft","Math.max(" + bs +"p.offsetWidth,"
|
|
+ bs +"b.offsetWidth)");
|
|
}
|
|
-->
|
|
|
|
<xsl:text doc:id="msup">
|
|
function msup (bs,x,p){
|
|
p.style.setExpression("top",bs +" .offsetTop -" + (p.offsetHeight/2));
|
|
x.style.setExpression("marginLeft", bs +"p.offsetWidth");
|
|
x.style.setExpression("height", bs + ".offsetHeight + " + p.offsetHeight);
|
|
document.recalc(true);
|
|
}
|
|
</xsl:text>
|
|
|
|
<xsl:text doc:id="msub">
|
|
function msub (bs,x,p){
|
|
p.style.setExpression("top",bs +" .offsetTop +" + (p.offsetHeight/2));
|
|
x.style.setExpression("marginLeft", bs +"p.offsetWidth");
|
|
x.style.setExpression("height", bs + ".offsetHeight + " + p.offsetHeight);
|
|
document.recalc(true);
|
|
}
|
|
</xsl:text>
|
|
|
|
<xsl:text doc:id="toggle">
|
|
function toggle (x) {
|
|
for ( i = 0 ; i < x.childNodes.length ; i++) {
|
|
if (x.childNodes.item(i).style.display=='inline') {
|
|
x.childNodes.item(i).style.display='none';
|
|
if ( i+1 == x.childNodes.length) {
|
|
x.childNodes.item(0).style.display='inline';
|
|
} else {
|
|
x.childNodes.item(i+1).style.display='inline';
|
|
};
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
</xsl:text>
|
|
</script>
|
|
|
|
|
|
<style>
|
|
<xsl:text doc:id="css">
|
|
|
|
.msubsup {
|
|
<!--background-color: red;-->
|
|
font-size: 80%;
|
|
position: absolute;
|
|
}
|
|
|
|
.munderover {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.lr {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.mi {
|
|
font-style: serif;
|
|
}
|
|
|
|
|
|
.mspace{
|
|
display: inline;
|
|
}
|
|
.mtext {
|
|
font-style: serif;
|
|
}
|
|
.ms {
|
|
font-style: monospace;
|
|
}
|
|
|
|
.mi1 {
|
|
font-style: italic;
|
|
}
|
|
|
|
.doublestruck {
|
|
font-family: castellar, algerian,niagara engraved;
|
|
}
|
|
.mo {
|
|
padding-right: .3em;
|
|
padding-left: .3em;
|
|
}
|
|
|
|
.mn {
|
|
}
|
|
|
|
.msqrt {
|
|
border-style: solid;
|
|
border-color: black;
|
|
border-width: .1em 0pt 0pt .1em;
|
|
padding-left: .2em;
|
|
margin-left: 0em;
|
|
margin-top: .2em;
|
|
display: inline;
|
|
}
|
|
|
|
.actuarial {
|
|
border-style: solid;
|
|
border-color: black;
|
|
border-width: .1em .1em 0pt 0pt ;
|
|
padding-right: .2em;
|
|
margin-right: 0em;
|
|
margin-top: .2em;
|
|
display: inline;
|
|
}
|
|
|
|
.ssa {
|
|
position:relative; top:+0.5ex;
|
|
width: 0pt;
|
|
color: red;
|
|
}
|
|
|
|
|
|
.mover {
|
|
margin: 0pt;
|
|
padding: 0pt;
|
|
display: inline;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
}
|
|
|
|
.mtable {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
.mfrac {
|
|
text-align: center;
|
|
display:inline;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.mfraca {
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.mfracaa {
|
|
border-width: 0em 0em .2ex 0em ; border-style: solid;
|
|
border-color: black;
|
|
}
|
|
|
|
|
|
.mfracb {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.merror{
|
|
background-color: white ;
|
|
border-style: solid;
|
|
border-color: #FF0000;
|
|
color: #FF0000;
|
|
}
|
|
.mphantom{
|
|
visibility: hidden;
|
|
}
|
|
</xsl:text>
|
|
</style>
|
|
</xsl:element>
|
|
</xsl:template>
|
|
|
|
<h:p>
|
|
Unimplemented MathML elements get copied literally, in red, mainly as
|
|
a debugging aid.
|
|
</h:p>
|
|
<xsl:template match="m:*">
|
|
<span style="color: red;"><<xsl:value-of select="local-name(.)"/>></span>
|
|
<xsl:apply-templates/>
|
|
<span style="color: red;"></<xsl:value-of select="local-name(.)"/>></span>
|
|
</xsl:template>
|
|
|
|
<h:p>
|
|
mi: set default font based on string length, otherwise behaviour based
|
|
on entries in the operator dictionary if one exists, or content is
|
|
copied through to the output unchanged.
|
|
</h:p>
|
|
<xsl:template match="m:mi">
|
|
<span class="mi">
|
|
<xsl:if test="1=string-length(normalize-space(.))">
|
|
<xsl:attribute name="class">mi1</xsl:attribute>
|
|
</xsl:if>
|
|
<xsl:apply-templates select="@mathvariant"/>
|
|
<xsl:variable name="x" select="normalize-space(.)"/>
|
|
<xsl:choose>
|
|
<xsl:when test="$opdict[@x=$x and @v]">
|
|
<xsl:attribute name="class"><xsl:value-of select="$opdict[@x=$x]/@v"/></xsl:attribute>
|
|
<xsl:value-of select="$opdict[@x=$x and @v]"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="$x"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<h:p>
|
|
Handling of mathvariant attribute.
|
|
The choice of font families here (currently) avoids math-specific
|
|
fonts but does use several fionts coming with windows 9.x and/or
|
|
office 2000.
|
|
</h:p>
|
|
<xsl:template match="@mathvariant[.='bold']">
|
|
<xsl:attribute name="style">font-weight: bold; font-style: upright</xsl:attribute>
|
|
</xsl:template>
|
|
<xsl:template match="@mathvariant[.='bold-italic']">
|
|
<xsl:attribute name="style">font-style: upright; font-weight: bold; font-style: italic;</xsl:attribute>
|
|
</xsl:template>
|
|
<xsl:template match="@mathvariant[.='italic']">
|
|
<xsl:attribute name="style">font-style: italic; </xsl:attribute>
|
|
</xsl:template>
|
|
<xsl:template match="@mathvariant[.='monospace']">
|
|
<xsl:attribute name="style">font-family: monospace; </xsl:attribute>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="@mathvariant[.='sans-serif']">
|
|
<xsl:attribute name="style">font-family: sans-serif; </xsl:attribute>
|
|
</xsl:template>
|
|
<xsl:template match="@mathvariant[.='bold-sans-serif']">
|
|
<xsl:attribute name="style">font-family: sans-serif; font-weight: bold; </xsl:attribute>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="@mathvariant[.='fraktur']">
|
|
<xsl:attribute name="style">font-family: old english text mt</xsl:attribute>
|
|
<xsl:attribute name="class"></xsl:attribute>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="@mathvariant[.='double-struck']">
|
|
<xsl:attribute name="class">doublestruck</xsl:attribute>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="@mathvariant[.='script']">
|
|
<xsl:attribute name="style">font-family: brush script mt italic</xsl:attribute>
|
|
<xsl:attribute name="class"></xsl:attribute>
|
|
</xsl:template>
|
|
|
|
|
|
<h:p>mo: Generate a unique ID so that a script at the end of any
|
|
surrounding mrow may replace the conent by a suitably stretched
|
|
operator if need be.</h:p>
|
|
<xsl:template match="m:mo">
|
|
<span id="{generate-id()}" class="mo">
|
|
<xsl:apply-templates/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<h:p>mn: a simple span</h:p>
|
|
<xsl:template match="m:mn">
|
|
<span class="mn">
|
|
<xsl:apply-templates/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<h:p>munder: currently only supports underline, with a bottom border</h:p>
|
|
<xsl:template match="m:munder">
|
|
<span class="munder">
|
|
<xsl:if test="normalize-space(*[2])='̲'">
|
|
<xsl:attribute
|
|
name="style">border-width: 0pt 0pt .1em 0pt; border-style: solid;"</xsl:attribute>
|
|
</xsl:if>
|
|
<span><xsl:apply-templates select="*[1]"/></span>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<h:p>mover: currently only supports overline, with a top border</h:p>
|
|
<xsl:template match="m:mover">
|
|
<span class="munder">
|
|
<xsl:if test="normalize-space(*[2])='¯'">
|
|
<xsl:attribute
|
|
name="style">border-width: .1em 0pt 0pt 0pt; border-style: solid;"</xsl:attribute>
|
|
</xsl:if>
|
|
<span><xsl:apply-templates select="*[1]"/></span>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<h:p>munderover: </h:p>
|
|
<xsl:template match="m:munderover">
|
|
<table class="munderover">
|
|
<tr><td><xsl:apply-templates select="*[3]"/></td></tr>
|
|
<tr><td><xsl:apply-templates select="*[1]"/></td></tr>
|
|
<tr><td><xsl:apply-templates select="*[2]"/></td></tr>
|
|
</table>
|
|
</xsl:template>
|
|
|
|
<h:p>mtext: a simple span</h:p>
|
|
<xsl:template match="m:mtext">
|
|
<span class="mtext">
|
|
<xsl:value-of select="normalize-space(.)"/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<h:p>mstyle: not many attributes currently supported</h:p>
|
|
<xsl:template match="m:mstyle">
|
|
<span>
|
|
<xsl:attribute name="style">
|
|
<xsl:if test="@color">color: <xsl:value-of select="@color"/>; </xsl:if>
|
|
<xsl:if test="@background">background-color: <xsl:value-of select="@background"/>; </xsl:if>
|
|
</xsl:attribute>
|
|
<xsl:apply-templates/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
|
|
<h:p>mglyph: Uses disable output escaping to construct a numeric
|
|
character reference. Uses IE's non conforming behaviour of using this
|
|
number to access the font encoding rather than unicode.</h:p>
|
|
<xsl:template match="m:mglyph">
|
|
<font face="{@fontfamily}"><xsl:value-of
|
|
disable-output-escaping="yes" select="'&#'"/>
|
|
<xsl:value-of select="@index"/>;<xsl:text/>
|
|
</font>
|
|
</xsl:template>
|
|
|
|
<h:p>ms: a simple span with left and right character added to the content.</h:p>
|
|
<xsl:template match="m:ms">
|
|
<span class="ms">
|
|
<xsl:value-of select="@lquote"/><xsl:if test="not(@lquote)">"</xsl:if>
|
|
<xsl:value-of select="normalize-space(.)"/>
|
|
<xsl:value-of select="@rquote"/><xsl:if test="not(@rquote)">"</xsl:if>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:math">
|
|
<xsl:call-template name="mrow"/>
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="m:mfenced">
|
|
<xsl:variable name="l">
|
|
<xsl:choose>
|
|
<xsl:when test="@open"><xsl:value-of select="@open"/></xsl:when>
|
|
<xsl:otherwise>(</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<xsl:variable name="r">
|
|
<xsl:choose>
|
|
<xsl:when test="@close"><xsl:value-of select="@close"/></xsl:when>
|
|
<xsl:otherwise>)</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<xsl:variable name="s">
|
|
<xsl:choose>
|
|
<xsl:when test="@sep">
|
|
<xsl:call-template name="text">
|
|
<xsl:with-param name="x" select="@sep"/>
|
|
</xsl:call-template>
|
|
</xsl:when>
|
|
<xsl:otherwise>,</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<span id="{generate-id()}L"><xsl:value-of select="$l"/></span>
|
|
<span id="{generate-id()}M">
|
|
<xsl:for-each select="*">
|
|
<xsl:apply-templates select="."/>
|
|
<xsl:if test="position() != last()"><span id="{generate-id()}X{position()}"><xsl:value-of select="$s"/></span></xsl:if>
|
|
</xsl:for-each>
|
|
</span>
|
|
<span id="{generate-id()}R"><xsl:value-of select="$r"/></span>
|
|
<script>
|
|
|
|
<xsl:if test="$s=$opdict[@stretch='true']/@x">
|
|
<xsl:for-each select="*[position()<last()]">
|
|
<xsl:variable name="opdictentry" select="$opdict[@x=$s]"/>
|
|
mrowStretch(<xsl:value-of select="concat(generate-id(),'X',position())"/>,"<xsl:value-of
|
|
select="$opdictentry/@top"/>","<xsl:value-of
|
|
select="$opdictentry/@extend"/>","<xsl:value-of
|
|
select="$opdictentry/@middle"/>","<xsl:value-of
|
|
select="$opdictentry/@bottom"/>");</xsl:for-each>
|
|
</xsl:if>
|
|
|
|
<xsl:variable name="opdictentry" select="$opdict[@x=$l]"/>
|
|
var mrowH = <xsl:value-of select="generate-id()"/>M.offsetHeight;
|
|
mrowStretch(<xsl:value-of select="generate-id()"/>L,"<xsl:value-of
|
|
select="$opdictentry/@top"/>","<xsl:value-of
|
|
select="$opdictentry/@extend"/>","<xsl:value-of
|
|
select="$opdictentry/@middle"/>","<xsl:value-of
|
|
select="$opdictentry/@bottom"/>");<xsl:text/>
|
|
|
|
<xsl:variable name="opdictentry2" select="$opdict[@x=$r]"/>
|
|
mrowStretch(<xsl:value-of select="generate-id()"/>R,"<xsl:value-of
|
|
select="$opdictentry2/@top"/>","<xsl:value-of
|
|
select="$opdictentry2/@extend"/>","<xsl:value-of
|
|
select="$opdictentry2/@middle"/>","<xsl:value-of
|
|
select="$opdictentry2/@bottom"/>");<xsl:text/>
|
|
</script>
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="m:mmultiscripts">
|
|
<table style="display:inline; vertical-align: middle;">
|
|
<tr>
|
|
<xsl:for-each select="*[preceding-sibling::m:mprescripts and position() mod 2 = 0]">
|
|
<td><xsl:apply-templates select="."/></td>
|
|
</xsl:for-each>
|
|
<td rowspan="2"><xsl:apply-templates select="*[1]"/></td>
|
|
<xsl:for-each select="*[not(preceding-sibling::m:mprescripts) and position() !=1 and position() mod 2 = 1]">
|
|
<td><xsl:apply-templates select="."/></td>
|
|
</xsl:for-each>
|
|
</tr>
|
|
<tr>
|
|
<xsl:for-each select="*[preceding-sibling::m:mprescripts and position() mod 2 = 1]">
|
|
<td><xsl:apply-templates select="."/></td>
|
|
</xsl:for-each>
|
|
<xsl:for-each select="*[not(preceding-sibling::m:mprescripts) and
|
|
not(self::m:mprescripts) and position() mod 2 = 0]">
|
|
<td><xsl:apply-templates select="."/></td>
|
|
</xsl:for-each>
|
|
</tr>
|
|
</table>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:none"></xsl:template>
|
|
|
|
<xsl:template match="m:merror">
|
|
<span class="merror"><xsl:call-template name="mrow"/></span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:mphantom">
|
|
<span class="mphantom"><xsl:apply-templates/></span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:maction[@type='tooltip']">
|
|
<span title="{*[2]}"><xsl:apply-templates select="*[1]"/></span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:maction[@type='toggle']">
|
|
<span id="{generate-id()}" onclick="toggle({generate-id()})">
|
|
<span style="display:inline;"><xsl:apply-templates select="*[1]"/></span>
|
|
<xsl:for-each select="*[position() > 1]">
|
|
<span style="display:none;"><xsl:apply-templates select="."/></span>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:maction[@type='statusline']">
|
|
<span id="{generate-id()}"
|
|
onmouseover="window.status='{*[2]}';"
|
|
onmouseout="window.status='';"
|
|
>
|
|
<xsl:apply-templates select="*[1]"/></span>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:maction[@type='highlight']">
|
|
<span id="{generate-id()}"
|
|
onmouseover="{generate-id()}.style.backgroundColor='yellow';"
|
|
onmouseout="{generate-id()}.style.backgroundColor='white';"><xsl:apply-templates/></span>
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="m:mrow" name="mrow">
|
|
<span id="{generate-id()}" class="mrow">
|
|
<xsl:apply-templates select="*"/>
|
|
</span>
|
|
<xsl:if test="m:mo[@stretch='true' or normalize-space(.)=$opdict[@stretch='true']/@x]">
|
|
<script>
|
|
var mrowH = <xsl:value-of select="generate-id()"/>.offsetHeight;
|
|
<xsl:for-each select="m:mo[@stretch='true' or
|
|
normalize-space(.)=$opdict[@stretch='true']/@x]">
|
|
|
|
<xsl:variable name="o" select="normalize-space(.)"/>
|
|
<xsl:variable name="opdictentry" select="$opdict[@x=$o]"/>
|
|
mrowStretch(<xsl:value-of select="generate-id()"/>,"<xsl:value-of
|
|
select="$opdictentry/@top"/>","<xsl:value-of
|
|
select="$opdictentry/@extend"/>","<xsl:value-of
|
|
select="$opdictentry/@middle"/>","<xsl:value-of
|
|
select="$opdictentry/@bottom"/>");</xsl:for-each>
|
|
</script>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:msubsup">
|
|
<span id="{generate-id()}" >
|
|
<xsl:apply-templates select="*[1]"/></span
|
|
><span id="{generate-id()}b" class="msubsup"><xsl:apply-templates
|
|
select="*[2]"/></span
|
|
><span id="{generate-id()}p" class="msubsup"><xsl:apply-templates
|
|
select="*[3]"/></span
|
|
><span id="{generate-id()}x"></span>
|
|
<script>
|
|
msubsup("<xsl:value-of select="concat(generate-id(),'",',generate-id(),',',generate-id(),'x,',generate-id(),'b,',generate-id())"/>p);
|
|
</script>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="h:table//m:msubsup|m:mtable//m:msubsup|m:msubsup"
|
|
priority="2">
|
|
<span>
|
|
<xsl:apply-templates select="*[1]"/>
|
|
</span
|
|
><sub><xsl:apply-templates
|
|
select="*[2]"/></sub>
|
|
<sup><xsl:apply-templates
|
|
select="*[3]"/></sup>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:msup
|
|
">
|
|
<span id="{generate-id()}">
|
|
<xsl:apply-templates select="*[1]"/>
|
|
</span
|
|
><span id="{generate-id()}p" class="msubsup"><xsl:apply-templates
|
|
select="*[2]"/></span
|
|
><span id="{generate-id()}x"></span>
|
|
<script>
|
|
msup("<xsl:value-of select="concat(generate-id(),'",',generate-id(),'x,',generate-id())"/>p);
|
|
</script>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="h:table//m:msup|m:mtable//m:msup|m:msup"
|
|
priority="2">
|
|
<span>
|
|
<xsl:apply-templates select="*[1]"/>
|
|
</span
|
|
><sup><xsl:apply-templates
|
|
select="*[2]"/></sup>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:msub
|
|
">
|
|
<span id="{generate-id()}">
|
|
<xsl:apply-templates select="*[1]"/>
|
|
</span
|
|
><span id="{generate-id()}p" class="msubsup"><xsl:apply-templates
|
|
select="*[2]"/></span
|
|
><span id="{generate-id()}x"></span>
|
|
<script>
|
|
msub("<xsl:value-of select="concat(generate-id(),'",',generate-id(),'x,',generate-id())"/>p);
|
|
</script>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="h:table//m:msub|m:mtable//m:msub|m:msub"
|
|
priority="2">
|
|
<span>
|
|
<xsl:apply-templates select="*[1]"/>
|
|
</span
|
|
><sub><xsl:apply-templates
|
|
select="*[2]"/></sub>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:*/text()" name="text">
|
|
<xsl:param name="x" select="normalize-space(.)"/>
|
|
<xsl:variable name="mo" select="document('')/*/x:x[@x=$x]"/>
|
|
<xsl:choose>
|
|
<xsl:when test="$mo"><xsl:copy-of select="$mo/node()"/></xsl:when>
|
|
<xsl:otherwise><xsl:copy-of select="$x"/></xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:msqrt">
|
|
<span class="msqrtx">\</span><span class="msqrt">
|
|
<xsl:apply-templates/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:menclose[@notation='radical']">
|
|
<span class="msqrtx">\</span><span class="msqrt">
|
|
<xsl:apply-templates/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:menclose[@notation='actuarial']">
|
|
<span class="actuarial">
|
|
<xsl:apply-templates/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:menclose">
|
|
<span class="msqrt">
|
|
<xsl:apply-templates/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:mroot">
|
|
<span class="msqrtx"><sup><xsl:apply-templates select="*[2]"/></sup>\</span><span class="msqrt">
|
|
<xsl:apply-templates select="*[1]"/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:mfrac">
|
|
<xsl:param name="full" select="not(ancestor::m:mfrac)"/>
|
|
<table class="mfrac">
|
|
<xsl:if test="$full">
|
|
<xsl:attribute name="style">font-size: 75% ;</xsl:attribute>
|
|
</xsl:if>
|
|
<xsl:if test="not($full)">
|
|
<xsl:attribute name="style">font-size: 100% ;</xsl:attribute>
|
|
</xsl:if>
|
|
<tr id="a{generate-id()}" class="mfraca"><td class="mfracaa">
|
|
<xsl:apply-templates select="*[1]"/>
|
|
</td></tr>
|
|
<tr id="b{generate-id()}" class="mfracb"><td>
|
|
<xsl:apply-templates select="*[2]"/>
|
|
</td></tr>
|
|
</table><xsl:if test="$full"><script>
|
|
if ( a<xsl:value-of select="generate-id()"
|
|
/>.offsetHeight > b<xsl:value-of select="generate-id()"
|
|
/>.offsetHeight ) b<xsl:value-of select="generate-id()
|
|
"/>.style.setExpression("height",a<xsl:value-of select="generate-id()"/>.offsetHeight );
|
|
else a<xsl:value-of
|
|
select="generate-id()"/>.style.setExpression("height",b<xsl:value-of
|
|
select="generate-id()"/>.offsetHeight );
|
|
</script></xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:padded">
|
|
<span>
|
|
<xsl:attribute name="display">
|
|
</xsl:attribute>
|
|
<xsl:apply-templates/>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:mspace">
|
|
<span style="padding-left: {@width};"></span>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:mtable">
|
|
<table class="mtable">
|
|
<xsl:apply-templates/>
|
|
</table>
|
|
<script>
|
|
<xsl:variable name="t" select="."/>
|
|
<xsl:for-each select="m:mtr[1]/m:mtd">
|
|
<xsl:variable name="c" select="position()"/>
|
|
<xsl:for-each select="descendant::m:maligngroup">
|
|
<xsl:variable name="g" select="position()"/>
|
|
malign([<xsl:for-each
|
|
select="$t/m:mtr/m:mtd[$c]/descendant::m:maligngroup[$g]">
|
|
<xsl:value-of select="generate-id()"/>
|
|
<xsl:if test="position()<last()">,</xsl:if>
|
|
</xsl:for-each>]);</xsl:for-each>
|
|
</xsl:for-each>
|
|
</script>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:mtr">
|
|
<tr>
|
|
<xsl:apply-templates/>
|
|
</tr>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="m:mtd">
|
|
<td>
|
|
<xsl:apply-templates/>
|
|
</td>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="m:maligngroup">
|
|
<xsl:variable name="g">
|
|
<xsl:choose>
|
|
<xsl:when test="@groupalign">
|
|
</xsl:when>
|
|
<xsl:when test="ancestor::td/@groupalign">
|
|
</xsl:when>
|
|
<xsl:when test="ancestor::tr/@groupalign">
|
|
</xsl:when>
|
|
<xsl:when test="ancestor::table/@groupalign">
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>left</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<span id="{generate-id()}"></span>
|
|
</xsl:template>
|
|
|
|
|
|
</xsl:stylesheet>
|