mathtype_to_mathml 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -1
- data/lib/mathtype_to_mathml/version.rb +1 -1
- data/lib/transform.xsl +2 -40
- data/lib/xsl/arrow.xsl +57 -57
- data/lib/xsl/box.xsl +5 -5
- data/lib/xsl/fence.xsl +40 -40
- data/lib/xsl/frac.xsl +9 -9
- data/lib/xsl/int.xsl +100 -100
- data/lib/xsl/lim.xsl +7 -7
- data/lib/xsl/long_division.xsl +32 -0
- data/lib/xsl/long_embellishment.xsl +150 -0
- data/lib/xsl/matrix.xsl +35 -36
- data/lib/xsl/pile.xsl +1 -1
- data/lib/xsl/product_coproduct.xsl +22 -22
- data/lib/xsl/subsup.xsl +14 -14
- data/lib/xsl/sum.xsl +18 -18
- data/lib/xsl/union_intersection.xsl +22 -22
- data/mathtype_to_mathml.gemspec +1 -1
- data/spec/fixtures/expected/629.xml +98 -0
- data/spec/fixtures/expected/embellishments_roots_long_divisions.xml +162 -0
- data/spec/fixtures/expected/matrices.xml +253 -0
- data/spec/fixtures/input/629.bin +0 -0
- data/spec/fixtures/input/embellishments_roots_long_divisions.bin +0 -0
- data/spec/fixtures/input/matrices.bin +0 -0
- metadata +17 -3
data/lib/xsl/subsup.xsl
CHANGED
@@ -6,50 +6,50 @@
|
|
6
6
|
|
7
7
|
<xsl:template match="tmpl[selector='tmSUP' and not(variation='tvSU_PRECEDES')]">
|
8
8
|
<msup>
|
9
|
-
<xsl:apply-templates select="slot[1]"/>
|
10
|
-
<xsl:apply-templates select="slot[3]"/>
|
9
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
10
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
11
11
|
</msup>
|
12
12
|
</xsl:template>
|
13
13
|
|
14
14
|
<xsl:template match="tmpl[selector='tmSUB' and not(variation='tvSU_PRECEDES')]">
|
15
15
|
<msub>
|
16
|
-
<xsl:apply-templates select="slot[1]"/>
|
17
|
-
<xsl:apply-templates select="slot[2]"/>
|
16
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
17
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
18
18
|
</msub>
|
19
19
|
</xsl:template>
|
20
20
|
|
21
21
|
<xsl:template match="tmpl[selector='tmSUBSUP' and not(variation='tvSU_PRECEDES')]">
|
22
22
|
<msubsup>
|
23
|
-
<xsl:apply-templates select="slot[1]"/>
|
24
|
-
<xsl:apply-templates select="slot[2]"/>
|
25
|
-
<xsl:apply-templates select="slot[3]"/>
|
23
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
24
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
25
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
26
26
|
</msubsup>
|
27
27
|
</xsl:template>
|
28
28
|
|
29
29
|
<xsl:template match="tmpl[selector='tmSUP' and variation='tvSU_PRECEDES']">
|
30
30
|
<mmultiscripts>
|
31
|
-
<xsl:apply-templates select="slot[1]"/>
|
31
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
32
32
|
<mprescripts/>
|
33
33
|
<none/>
|
34
|
-
<xsl:apply-templates select="slot[3]"/>
|
34
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
35
35
|
</mmultiscripts>
|
36
36
|
</xsl:template>
|
37
37
|
|
38
38
|
<xsl:template match="tmpl[selector='tmSUB' and variation='tvSU_PRECEDES']">
|
39
39
|
<mmultiscripts>
|
40
|
-
<xsl:apply-templates select="slot[1]"/>
|
40
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
41
41
|
<mprescripts/>
|
42
|
-
<xsl:apply-templates select="slot[2]"/>
|
42
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
43
43
|
<none/>
|
44
44
|
</mmultiscripts>
|
45
45
|
</xsl:template>
|
46
46
|
|
47
47
|
<xsl:template match="tmpl[selector='tmSUBSUP' and variation='tvSU_PRECEDES']">
|
48
48
|
<mmultiscripts>
|
49
|
-
<xsl:apply-templates select="slot[1]"/>
|
49
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
50
50
|
<mprescripts/>
|
51
|
-
<xsl:apply-templates select="slot[2]"/>
|
52
|
-
<xsl:apply-templates select="slot[3]"/>
|
51
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
52
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
53
53
|
</mmultiscripts>
|
54
54
|
</xsl:template>
|
55
55
|
</xsl:stylesheet>
|
data/lib/xsl/sum.xsl
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
<xsl:template match="tmpl[selector='tmSUM' and (not(variation='tvBO_UPPER') and not(variation='tvBO_UPPER'))]">
|
10
10
|
<mstyle displaystyle="true">
|
11
11
|
<mo>∑</mo>
|
12
|
-
<xsl:apply-templates select="slot[1]"/>
|
12
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
13
13
|
</mstyle>
|
14
14
|
</xsl:template>
|
15
15
|
|
@@ -17,9 +17,9 @@
|
|
17
17
|
<mstyle displaystyle="true">
|
18
18
|
<munder>
|
19
19
|
<mo>∑</mo>
|
20
|
-
<xsl:apply-templates select="slot[2]"/>
|
20
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
21
21
|
</munder>
|
22
|
-
<xsl:apply-templates select="slot[1]"/>
|
22
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
23
23
|
</mstyle>
|
24
24
|
</xsl:template>
|
25
25
|
|
@@ -27,10 +27,10 @@
|
|
27
27
|
<mstyle displaystyle="true">
|
28
28
|
<munderover>
|
29
29
|
<mo>∑</mo>
|
30
|
-
<xsl:apply-templates select="slot[2]"/>
|
31
|
-
<xsl:apply-templates select="slot[3]"/>
|
30
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
31
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
32
32
|
</munderover>
|
33
|
-
<xsl:apply-templates select="slot[1]"/>
|
33
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
34
34
|
</mstyle>
|
35
35
|
</xsl:template>
|
36
36
|
|
@@ -38,9 +38,9 @@
|
|
38
38
|
<mstyle displaystyle="true">
|
39
39
|
<msub>
|
40
40
|
<mo>∑</mo>
|
41
|
-
<xsl:apply-templates select="slot[2]"/>
|
41
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
42
42
|
</msub>
|
43
|
-
<xsl:apply-templates select="slot[1]"/>
|
43
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
44
44
|
</mstyle>
|
45
45
|
</xsl:template>
|
46
46
|
|
@@ -48,33 +48,33 @@
|
|
48
48
|
<mstyle displaystyle="true">
|
49
49
|
<msubsup>
|
50
50
|
<mo>∑</mo>
|
51
|
-
<xsl:apply-templates select="slot[2]"/>
|
52
|
-
<xsl:apply-templates select="slot[3]"/>
|
51
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
52
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
53
53
|
</msubsup>
|
54
|
-
<xsl:apply-templates select="slot[1]"/>
|
54
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
55
55
|
</mstyle>
|
56
56
|
</xsl:template>
|
57
57
|
|
58
58
|
<!-- Sum operator -->
|
59
59
|
<xsl:template match="tmpl[selector='tmSUMOP']">
|
60
60
|
<munderover>
|
61
|
-
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4]"/></mstyle>
|
62
|
-
<xsl:apply-templates select="slot[2]"/>
|
63
|
-
<xsl:apply-templates select="slot[3]"/>
|
61
|
+
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4] | pile[4]"/></mstyle>
|
62
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
63
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
64
64
|
</munderover>
|
65
65
|
</xsl:template>
|
66
66
|
|
67
67
|
<xsl:template match="tmpl[selector='tmSUMOP' and variation='tvBO_UPPER' ]">
|
68
68
|
<mover>
|
69
|
-
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4]"/></mstyle>
|
70
|
-
<xsl:apply-templates select="slot[3]"/>
|
69
|
+
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4] | pile[4]"/></mstyle>
|
70
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
71
71
|
</mover>
|
72
72
|
</xsl:template>
|
73
73
|
|
74
74
|
<xsl:template match="tmpl[selector='tmSUMOP' and variation='tvBO_LOWER' ]">
|
75
75
|
<munder>
|
76
|
-
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4]"/></mstyle>
|
77
|
-
<xsl:apply-templates select="slot[2]"/>
|
76
|
+
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4] | pile[4]"/></mstyle>
|
77
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
78
78
|
</munder>
|
79
79
|
</xsl:template>
|
80
80
|
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
<xsl:template match="tmpl[selector='tmINTER' and (not(variation='tvBO_UPPER') and not(variation='tvBO_UPPER'))]">
|
10
10
|
<mstyle displaystyle="true">
|
11
|
-
<mo>∩</mo> <xsl:apply-templates select="slot[1]"/>
|
11
|
+
<mo>∩</mo> <xsl:apply-templates select="slot[1] | pile[1]"/>
|
12
12
|
</mstyle>
|
13
13
|
</xsl:template>
|
14
14
|
|
@@ -16,9 +16,9 @@
|
|
16
16
|
<mstyle displaystyle="true">
|
17
17
|
<munder>
|
18
18
|
<mo>∩</mo>
|
19
|
-
<xsl:apply-templates select="slot[2]"/>
|
19
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
20
20
|
</munder>
|
21
|
-
<xsl:apply-templates select="slot[1]"/>
|
21
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
22
22
|
</mstyle>
|
23
23
|
</xsl:template>
|
24
24
|
|
@@ -26,10 +26,10 @@
|
|
26
26
|
<mstyle displaystyle="true">
|
27
27
|
<munderover>
|
28
28
|
<mo>∩</mo>
|
29
|
-
<xsl:apply-templates select="slot[2]"/>
|
30
|
-
<xsl:apply-templates select="slot[3]"/>
|
29
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
30
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
31
31
|
</munderover>
|
32
|
-
<xsl:apply-templates select="slot[1]"/>
|
32
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
33
33
|
</mstyle>
|
34
34
|
</xsl:template>
|
35
35
|
|
@@ -37,9 +37,9 @@
|
|
37
37
|
<mstyle displaystyle="true">
|
38
38
|
<msub>
|
39
39
|
<mo>∩</mo>
|
40
|
-
<xsl:apply-templates select="slot[2]"/>
|
40
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
41
41
|
</msub>
|
42
|
-
<xsl:apply-templates select="slot[1]"/>
|
42
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
43
43
|
</mstyle>
|
44
44
|
</xsl:template>
|
45
45
|
|
@@ -47,16 +47,16 @@
|
|
47
47
|
<mstyle displaystyle="true">
|
48
48
|
<msubsup>
|
49
49
|
<mo>∩</mo>
|
50
|
-
<xsl:apply-templates select="slot[2]"/>
|
51
|
-
<xsl:apply-templates select="slot[3]"/>
|
50
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
51
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
52
52
|
</msubsup>
|
53
|
-
<xsl:apply-templates select="slot[1]"/>
|
53
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
54
54
|
</mstyle>
|
55
55
|
</xsl:template>
|
56
56
|
|
57
57
|
<xsl:template match="tmpl[selector='tmUNION' and (not(variation='tvBO_UPPER') and not(variation='tvBO_UPPER'))]">
|
58
58
|
<mstyle displaystyle="true">
|
59
|
-
<mo>∪</mo> <xsl:apply-templates select="slot[1]"/>
|
59
|
+
<mo>∪</mo> <xsl:apply-templates select="slot[1] | pile[1]"/>
|
60
60
|
</mstyle>
|
61
61
|
</xsl:template>
|
62
62
|
|
@@ -64,9 +64,9 @@
|
|
64
64
|
<mstyle displaystyle="true">
|
65
65
|
<munder>
|
66
66
|
<mo>∪</mo>
|
67
|
-
<xsl:apply-templates select="slot[2]"/>
|
67
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
68
68
|
</munder>
|
69
|
-
<xsl:apply-templates select="slot[1]"/>
|
69
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
70
70
|
</mstyle>
|
71
71
|
</xsl:template>
|
72
72
|
|
@@ -74,10 +74,10 @@
|
|
74
74
|
<mstyle displaystyle="true">
|
75
75
|
<munderover>
|
76
76
|
<mo>∪</mo>
|
77
|
-
<xsl:apply-templates select="slot[2]"/>
|
78
|
-
<xsl:apply-templates select="slot[3]"/>
|
77
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
78
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
79
79
|
</munderover>
|
80
|
-
<xsl:apply-templates select="slot[1]"/>
|
80
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
81
81
|
</mstyle>
|
82
82
|
</xsl:template>
|
83
83
|
|
@@ -85,9 +85,9 @@
|
|
85
85
|
<mstyle displaystyle="true">
|
86
86
|
<msub>
|
87
87
|
<mo>∪</mo>
|
88
|
-
<xsl:apply-templates select="slot[2]"/>
|
88
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
89
89
|
</msub>
|
90
|
-
<xsl:apply-templates select="slot[1]"/>
|
90
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
91
91
|
</mstyle>
|
92
92
|
</xsl:template>
|
93
93
|
|
@@ -95,10 +95,10 @@
|
|
95
95
|
<mstyle displaystyle="true">
|
96
96
|
<msubsup>
|
97
97
|
<mo>∪</mo>
|
98
|
-
<xsl:apply-templates select="slot[2]"/>
|
99
|
-
<xsl:apply-templates select="slot[3]"/>
|
98
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
99
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
100
100
|
</msubsup>
|
101
|
-
<xsl:apply-templates select="slot[1]"/>
|
101
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
102
102
|
</mstyle>
|
103
103
|
</xsl:template>
|
104
104
|
</xsl:stylesheet>
|
data/mathtype_to_mathml.gemspec
CHANGED
@@ -0,0 +1,98 @@
|
|
1
|
+
<math>
|
2
|
+
<semantics>
|
3
|
+
<mrow>
|
4
|
+
<msub>
|
5
|
+
<mi>P</mi>
|
6
|
+
<mi>x</mi>
|
7
|
+
</msub>
|
8
|
+
<mo>=</mo><mi>r</mi><mfrac>
|
9
|
+
<mrow>
|
10
|
+
<mstyle displaystyle='true'>
|
11
|
+
<munder>
|
12
|
+
<mo>∑</mo>
|
13
|
+
<mrow>
|
14
|
+
<mi>y</mi><mo>=</mo><mn>1</mn><mo>:</mo><mi>N</mi></mrow>
|
15
|
+
</munder>
|
16
|
+
<mrow>
|
17
|
+
<msub>
|
18
|
+
<mi>Y</mi>
|
19
|
+
<mi>y</mi>
|
20
|
+
</msub>
|
21
|
+
</mrow>
|
22
|
+
</mstyle></mrow>
|
23
|
+
<mi>N</mi>
|
24
|
+
</mfrac>
|
25
|
+
<mo>−</mo><msub>
|
26
|
+
<mi>Y</mi>
|
27
|
+
<mi>x</mi>
|
28
|
+
</msub>
|
29
|
+
<mo>=</mo><mrow><mo>{</mo> <mtable columnalign='left'>
|
30
|
+
<mtr>
|
31
|
+
<mtd>
|
32
|
+
<mi>r</mi><mfrac>
|
33
|
+
<mrow>
|
34
|
+
<mstyle displaystyle='true'>
|
35
|
+
<munder>
|
36
|
+
<mo>∑</mo>
|
37
|
+
<mrow>
|
38
|
+
<msub>
|
39
|
+
<mi>s</mi>
|
40
|
+
<mi>y</mi>
|
41
|
+
</msub>
|
42
|
+
<mo>=</mo><mi>C</mi></mrow>
|
43
|
+
</munder>
|
44
|
+
<mrow>
|
45
|
+
<msub>
|
46
|
+
<mi>Y</mi>
|
47
|
+
<mi>y</mi>
|
48
|
+
</msub>
|
49
|
+
</mrow>
|
50
|
+
</mstyle></mrow>
|
51
|
+
<mi>N</mi>
|
52
|
+
</mfrac>
|
53
|
+
<mo>−</mo><msub>
|
54
|
+
<mi>Y</mi>
|
55
|
+
<mi>x</mi>
|
56
|
+
</msub>
|
57
|
+
<mtext>    if </mtext><msub>
|
58
|
+
<mi>s</mi>
|
59
|
+
<mi>x</mi>
|
60
|
+
</msub>
|
61
|
+
<mo>=</mo><mi>C</mi>
|
62
|
+
</mtd>
|
63
|
+
</mtr>
|
64
|
+
<mtr>
|
65
|
+
<mtd>
|
66
|
+
<mi>r</mi><mfrac>
|
67
|
+
<mrow>
|
68
|
+
<mstyle displaystyle='true'>
|
69
|
+
<munder>
|
70
|
+
<mo>∑</mo>
|
71
|
+
<mrow>
|
72
|
+
<msub>
|
73
|
+
<mi>s</mi>
|
74
|
+
<mi>y</mi>
|
75
|
+
</msub>
|
76
|
+
<mo>=</mo><mi>C</mi></mrow>
|
77
|
+
</munder>
|
78
|
+
<mrow>
|
79
|
+
<msub>
|
80
|
+
<mi>Y</mi>
|
81
|
+
<mi>y</mi>
|
82
|
+
</msub>
|
83
|
+
</mrow>
|
84
|
+
</mstyle></mrow>
|
85
|
+
<mi>N</mi>
|
86
|
+
</mfrac>
|
87
|
+
<mtext>           if </mtext><msub>
|
88
|
+
<mi>s</mi>
|
89
|
+
<mi>x</mi>
|
90
|
+
</msub>
|
91
|
+
<mo>=</mo><mi>D</mi>
|
92
|
+
</mtd>
|
93
|
+
</mtr>
|
94
|
+
</mtable>
|
95
|
+
</mrow></mrow>
|
96
|
+
<annotation encoding='MathType-MTEF'>MathType@MTEF@5@5@+=faaagCart1ev2aqaKnaaaaWenf2ys9wBH5garuavP1wzZbItLDhis9wBH5garmWu51MyVXgaruWqVvNCPvMCG4uz3bqee0evGueE0jxyaibaieYlf9irVeeu0dXdh9vqqj=hHeeu0xXdbba9frFj0=OqFfea0dXdd9vqaq=JfrVkFHe9pgea0dXdar=Jb9hs0dXdbPYxe9vr0=vr0=vqpi0dc9GqpWqaaeaabiGaciaacaqabeaadaqaaqaaaOqaaiaadcfadaWgaaWcbaGaamiEaaqabaGccqGH9aqpcaWGYbWaaSaaaeaadaaeqbqaaiaadMfadaWgaaWcbaGaamyEaaqabaaabaGaamyEaiabg2da9iaaigdacaGG6aGaamOtaaqab0GaeyyeIuoaaOqaaiaad6eaaaGaeyOeI0IaamywamaaBaaaleaacaWG4baabeaakiabg2da9maaceaaeaqabeaacaWGYbWaaSaaaeaadaaeqbqaaiaadMfadaWgaaWcbaGaamyEaaqabaaabaGaam4CamaaBaaameaacaWG5baabeaaliabg2da9iaadoeaaeqaniabggHiLdaakeaacaWGobaaaiabgkHiTiaadMfadaWgaaWcbaGaamiEaaqabaGccaqGGaGaaeiiaiaabccacaqGGaGaaeyAaiaabAgacaqGGaGaam4CamaaBaaaleaacaWG4baabeaakiabg2da9iaadoeaaeaacaWGYbWaaSaaaeaadaaeqbqaaiaadMfadaWgaaWcbaGaamyEaaqabaaabaGaam4CamaaBaaameaacaWG5baabeaaliabg2da9iaadoeaaeqaniabggHiLdaakeaacaWGobaaaiaabccacaqGGaGaaeiiaiaabccacaqGGaGaaeiiaiaabccacaqGGaGaaeiiaiaabccacaqGGaGaaeyAaiaabAgacaqGGaGaam4CamaaBaaaleaacaWG4baabeaakiabg2da9iaadseaaaGaay5Eaaaaaa@72C0@</annotation>
|
97
|
+
</semantics>
|
98
|
+
</math>
|
@@ -0,0 +1,162 @@
|
|
1
|
+
<math display='block'>
|
2
|
+
<semantics>
|
3
|
+
<mtable columnalign='left'>
|
4
|
+
<mtr>
|
5
|
+
<mtd>
|
6
|
+
<mover accent='true'>
|
7
|
+
<mrow>
|
8
|
+
<mi>a</mi><mo>+</mo><mi>b</mi></mrow>
|
9
|
+
<mo stretchy='true'>˜</mo>
|
10
|
+
</mover>
|
11
|
+
<mo>+</mo><mover accent='true'>
|
12
|
+
<mrow>
|
13
|
+
<mi>c</mi><mo>+</mo><mi>d</mi></mrow>
|
14
|
+
<mo stretchy='true'>^</mo>
|
15
|
+
</mover>
|
16
|
+
<mo>+</mo><mover accent='true'>
|
17
|
+
<mrow>
|
18
|
+
<mi>d</mi><mo>+</mo><mi>f</mi></mrow>
|
19
|
+
<mo stretchy='true'>⌢</mo>
|
20
|
+
</mover>
|
21
|
+
<mo>+</mo><mover accent='true'>
|
22
|
+
<mrow>
|
23
|
+
<mi>e</mi><mo>+</mo><mi>f</mi></mrow>
|
24
|
+
<mo stretchy='true'>︹</mo>
|
25
|
+
</mover>
|
26
|
+
<mo>+</mo><mover accent='true'>
|
27
|
+
<mrow>
|
28
|
+
<mi>x</mi><mo>+</mo><mi>y</mi></mrow>
|
29
|
+
<mo stretchy='true'>¯</mo>
|
30
|
+
</mover>
|
31
|
+
<mo>+</mo>
|
32
|
+
</mtd>
|
33
|
+
</mtr>
|
34
|
+
<mtr>
|
35
|
+
<mtd>
|
36
|
+
<mover accent='true'>
|
37
|
+
<mover accent='true'>
|
38
|
+
<mrow>
|
39
|
+
<mi>y</mi><mo>+</mo><mi>t</mi></mrow>
|
40
|
+
<mo stretchy='true'>¯</mo>
|
41
|
+
</mover>
|
42
|
+
<mo stretchy='true'>¯</mo>
|
43
|
+
</mover>
|
44
|
+
<mo>+</mo><munder accentunder='true'>
|
45
|
+
<mrow>
|
46
|
+
<mi>l</mi><mo>+</mo><mi>m</mi></mrow>
|
47
|
+
<mo stretchy='true'>_</mo>
|
48
|
+
</munder>
|
49
|
+
<mo>+</mo><munder accentunder='true'>
|
50
|
+
<munder accentunder='true'>
|
51
|
+
<mrow>
|
52
|
+
<mi>k</mi><mo>+</mo><mi>e</mi></mrow>
|
53
|
+
<mo stretchy='true'>_</mo>
|
54
|
+
</munder>
|
55
|
+
<mo stretchy='true'>_</mo>
|
56
|
+
</munder>
|
57
|
+
<mo>+</mo><mover accent='true'>
|
58
|
+
<mrow>
|
59
|
+
<mi>k</mi><mi>c</mi><mo>+</mo><mn>3</mn></mrow>
|
60
|
+
<mo stretchy='true'>→</mo>
|
61
|
+
</mover>
|
62
|
+
<mo>+</mo><mover accent='true'>
|
63
|
+
<mrow>
|
64
|
+
<mi>a</mi><mo>+</mo><mi>b</mi></mrow>
|
65
|
+
<mo stretchy='true'>←</mo>
|
66
|
+
</mover>
|
67
|
+
<mo>+</mo>
|
68
|
+
</mtd>
|
69
|
+
</mtr>
|
70
|
+
<mtr>
|
71
|
+
<mtd>
|
72
|
+
<mover accent='true'>
|
73
|
+
<mrow>
|
74
|
+
<mi>y</mi><mo>+</mo><mi>x</mi></mrow>
|
75
|
+
<mo stretchy='true'>⇀</mo>
|
76
|
+
</mover>
|
77
|
+
<mo>+</mo><mover accent='true'>
|
78
|
+
<mrow>
|
79
|
+
<mi>k</mi><mo>−</mo><mn>4</mn></mrow>
|
80
|
+
<mo stretchy='true'>↔</mo>
|
81
|
+
</mover>
|
82
|
+
<mo>+</mo><munder accentunder='true'>
|
83
|
+
<mrow>
|
84
|
+
<mi>c</mi><mo>−</mo><mi>d</mi></mrow>
|
85
|
+
<mo stretchy='true'>→</mo>
|
86
|
+
</munder>
|
87
|
+
<mo>+</mo><munder accentunder='true'>
|
88
|
+
<mrow>
|
89
|
+
<mi>d</mi><mo>+</mo><mi>e</mi></mrow>
|
90
|
+
<mo stretchy='true'>←</mo>
|
91
|
+
</munder>
|
92
|
+
<mo>+</mo><munder accentunder='true'>
|
93
|
+
<mrow>
|
94
|
+
<mi>e</mi><mo>+</mo><mi>f</mi></mrow>
|
95
|
+
<mo stretchy='true'>⇁</mo>
|
96
|
+
</munder>
|
97
|
+
<mo>+</mo>
|
98
|
+
</mtd>
|
99
|
+
</mtr>
|
100
|
+
<mtr>
|
101
|
+
<mtd>
|
102
|
+
<munder accentunder='true'>
|
103
|
+
<mrow>
|
104
|
+
<mi>c</mi><mo>+</mo><mi>e</mi></mrow>
|
105
|
+
<mo stretchy='true'>↔</mo>
|
106
|
+
</munder>
|
107
|
+
<mo>+</mo><menclose notation='horizontalstrike'>
|
108
|
+
<mrow>
|
109
|
+
<mi>d</mi><mo>+</mo><mi>f</mi></mrow>
|
110
|
+
</menclose>
|
111
|
+
<mo>+</mo><menclose notation='updiagonalstrike downdiagonalstrike'>
|
112
|
+
<mrow>
|
113
|
+
<mi>x</mi><mo>+</mo><mi>z</mi></mrow>
|
114
|
+
</menclose>
|
115
|
+
<mo>+</mo><menclose notation='updiagonalstrike'>
|
116
|
+
<mrow>
|
117
|
+
<mi>e</mi><mo>+</mo><mi>x</mi></mrow>
|
118
|
+
</menclose>
|
119
|
+
<mo>+</mo><menclose notation='downdiagonalstrike'>
|
120
|
+
<mrow>
|
121
|
+
<mi>y</mi><mo>+</mo><mi>z</mi></mrow>
|
122
|
+
</menclose>
|
123
|
+
|
124
|
+
</mtd>
|
125
|
+
</mtr>
|
126
|
+
<mtr>
|
127
|
+
<mtd>
|
128
|
+
<msqrt>
|
129
|
+
<mn>2</mn>
|
130
|
+
</msqrt>
|
131
|
+
<mo>+</mo><mroot>
|
132
|
+
<mn>9</mn>
|
133
|
+
<mn>3</mn>
|
134
|
+
</mroot>
|
135
|
+
<mo>+</mo><menclose notation='longdiv'>
|
136
|
+
<mrow>
|
137
|
+
<mi>d</mi><mo>+</mo><mn>3</mn></mrow>
|
138
|
+
</menclose>
|
139
|
+
<mo>+</mo><mtable>
|
140
|
+
<mtr>
|
141
|
+
<mtd columnalign='right'>
|
142
|
+
<mrow>
|
143
|
+
<mi>d</mi><mo>+</mo><mn>3</mn></mrow>
|
144
|
+
</mtd>
|
145
|
+
</mtr>
|
146
|
+
<mtr>
|
147
|
+
<mtd columnalign='right'>
|
148
|
+
<menclose notation='longdiv'>
|
149
|
+
<mrow>
|
150
|
+
<mi>x</mi><mi>y</mi></mrow>
|
151
|
+
</menclose>
|
152
|
+
</mtd>
|
153
|
+
</mtr>
|
154
|
+
</mtable>
|
155
|
+
|
156
|
+
</mtd>
|
157
|
+
</mtr>
|
158
|
+
</mtable>
|
159
|
+
|
160
|
+
<annotation encoding='MathType-MTEF'>MathType@MTEF@5@5@+=faaagCart1ev2aaaKnaaaaWenf2ys9wBH5garuavP1wzZbItLDhis9wBH5garmWu51MyVXgaruWqVvNCPvMCG4uz3bqee0evGueE0jxyaibaieYlf9irVeeu0dXdh9vqqj=hHeeu0xXdbba9frFj0=OqFfea0dXdd9vqaq=JfrVkFHe9pgea0dXdar=Jb9hs0dXdbPYxe9vr0=vr0=vqpi0dc9GqpWqaaeaabiGaciaacaqabeaadaqaaqaaaOabaeqabaWaaacaaeaacaWGHbGaey4kaSIaamOyaaGaay5adaGaey4kaSYaaecaaeaacaWGJbGaey4kaSIaamizaaGaayPadaGaey4kaSYaaicaaeaacaWGKbGaey4kaSIaamOzaaGaayPiJaGaey4kaSYaamcaaeaacaWGLbGaey4kaSIaamOzaaGaayzdUdGaey4kaSYaa0aaaeaacaWG4bGaey4kaSIaamyEaaaacqGHRaWkaeaadaqdbaqaaiaadMhacqGHRaWkcaWG0baaaiabgUcaRmaamaaabaGaamiBaiabgUcaRiaad2gaaaGaey4kaSYaaWqaaeaacaWGRbGaey4kaSIaamyzaaaacqGHRaWkdaWhcaqaaiaadUgacaWGJbGaey4kaSIaaG4maaGaay51GaGaey4kaSYaa8raaeaacaWGHbGaey4kaSIaamOyaaGaayP1GaGaey4kaScabaWaa8HcaeaacaWG5bGaey4kaSIaamiEaaGaayz0GaGaey4kaSYaa8XaaeaacaWGRbGaeyOeI0IaaGinaaGaayz4GaGaey4kaSYaa8HbaeaacaWGJbGaeyOeI0IaamizaaGaay51GaGaey4kaSYaa8rbaeaacaWGKbGaey4kaSIaamyzaaGaayP1GaGaey4kaSYaa8HdaeaacaWGLbGaey4kaSIaamOzaaGaayzgRdGaey4kaScabaWaa8XbaeaacaWGJbGaey4kaSIaamyzaaGaayz4GaGaey4kaSYaaqsaaeaacaWGKbGaey4kaSIaamOzaaaacqGHRaWkdaajgaqaaiaadIhacqGHRaWkcaWG6baaaiabgUcaRmaaKiaabaGaamyzaiabgUcaRiaadIhaaaGaey4kaSYaaqcbaeaacaWG5bGaey4kaSIaamOEaaaaaeaadaGcaaqaaiaaikdaaSqabaGccqGHRaWkdaGcbaqaaiaaiMdaaSqaaiaaiodaaaGccqGHRaWkdaGgaaqaaiaadsgacqGHRaWkcaaIZaaabeqabeqaaiabgUcaRmaaAeaabaGaamiEaiaadMhaaeaacaWGKbGaey4kaSIaaG4maaqabeqaaaaaaa@9AE2@</annotation>
|
161
|
+
</semantics>
|
162
|
+
</math>
|