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/fence.xsl
CHANGED
@@ -8,23 +8,23 @@
|
|
8
8
|
<xsl:template match="tmpl[selector='tmPAREN']">
|
9
9
|
<mrow>
|
10
10
|
<mo>(</mo>
|
11
|
-
<xsl:apply-templates select="slot[1]"/>
|
11
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
12
12
|
<mo>)</mo>
|
13
13
|
</mrow>
|
14
14
|
</xsl:template>
|
15
15
|
|
16
16
|
<xsl:template match="tmpl[selector='tmPAREN' and variation='tvFENCE_L' and not(variation='tvFENCE_R')]">
|
17
|
-
<mrow><mo>(</mo> <xsl:apply-templates select="slot[1]"/></mrow>
|
17
|
+
<mrow><mo>(</mo> <xsl:apply-templates select="slot[1] | pile[1]"/></mrow>
|
18
18
|
</xsl:template>
|
19
19
|
|
20
20
|
<xsl:template match="tmpl[selector='tmPAREN' and variation='tvFENCE_R' and not(variation='tvFENCE_L')]">
|
21
|
-
<mrow> <xsl:apply-templates select="slot[1]"/> <mo>)</mo></mrow>
|
21
|
+
<mrow> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>)</mo></mrow>
|
22
22
|
</xsl:template>
|
23
23
|
|
24
24
|
<xsl:template match="tmpl[selector='tmBRACK']">
|
25
25
|
<mrow>
|
26
26
|
<mo>[</mo>
|
27
|
-
<xsl:apply-templates select="slot[1]"/>
|
27
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
28
28
|
<mo>]</mo>
|
29
29
|
</mrow>
|
30
30
|
</xsl:template>
|
@@ -32,97 +32,97 @@
|
|
32
32
|
<xsl:template match="tmpl[selector='tmBRACE']">
|
33
33
|
<mrow>
|
34
34
|
<mo>{</mo>
|
35
|
-
<xsl:apply-templates select="slot[1]"/>
|
35
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
36
36
|
<mo>}</mo>
|
37
37
|
</mrow>
|
38
38
|
</xsl:template>
|
39
39
|
|
40
40
|
<xsl:template match="tmpl[selector='tmANGLE']">
|
41
|
-
<mrow><mo>〈</mo> <xsl:apply-templates select="slot[1]"/> <mo>〉</mo></mrow>
|
41
|
+
<mrow><mo>〈</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>〉</mo></mrow>
|
42
42
|
</xsl:template>
|
43
43
|
|
44
44
|
<xsl:template match="tmpl[selector='tmANGLE' and variation='tvFENCE_L' and not(variation='tvFENCE_R')]">
|
45
45
|
<mrow>
|
46
46
|
<mo>〈</mo>
|
47
|
-
<xsl:apply-templates select="slot[1]"/>
|
47
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
48
48
|
</mrow>
|
49
49
|
</xsl:template>
|
50
50
|
|
51
51
|
<xsl:template match="tmpl[selector='tmANGLE' and variation='tvFENCE_R' and not(variation='tvFENCE_L')]">
|
52
52
|
<mrow>
|
53
|
-
<xsl:apply-templates select="slot[1]"/>
|
53
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
54
54
|
<mo>〉</mo>
|
55
55
|
</mrow>
|
56
56
|
</xsl:template>
|
57
57
|
|
58
58
|
<xsl:template match="tmpl[selector='tmBAR']">
|
59
|
-
<mrow><mo>|</mo> <xsl:apply-templates select="slot[1]"/> <mo>|</mo></mrow>
|
59
|
+
<mrow><mo>|</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>|</mo></mrow>
|
60
60
|
</xsl:template>
|
61
61
|
|
62
62
|
<xsl:template match="tmpl[selector='tmBAR' and variation='tvFENCE_L' and not(variation='tvFENCE_R')]">
|
63
63
|
<mrow>
|
64
64
|
<mo>|</mo>
|
65
|
-
<xsl:apply-templates select="slot[1]"/>
|
65
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
66
66
|
</mrow>
|
67
67
|
</xsl:template>
|
68
68
|
|
69
69
|
<xsl:template match="tmpl[selector='tmBAR' and variation='tvFENCE_R' and not(variation='tvFENCE_L')]">
|
70
70
|
<mrow>
|
71
|
-
<xsl:apply-templates select="slot[1]"/>
|
71
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
72
72
|
<mo>|</mo>
|
73
73
|
</mrow>
|
74
74
|
</xsl:template>
|
75
75
|
|
76
76
|
<xsl:template match="tmpl[selector='tmFLOOR']">
|
77
|
-
<mrow><mo>⌊</mo> <xsl:apply-templates select="slot[1]"/> <mo>⌋</mo></mrow>
|
77
|
+
<mrow><mo>⌊</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>⌋</mo></mrow>
|
78
78
|
</xsl:template>
|
79
79
|
|
80
80
|
<xsl:template match="tmpl[selector='tmCEILING']">
|
81
|
-
<mrow><mo>⌈</mo> <xsl:apply-templates select="slot[1]"/> <mo>⌉</mo></mrow>
|
81
|
+
<mrow><mo>⌈</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>⌉</mo></mrow>
|
82
82
|
</xsl:template>
|
83
83
|
|
84
84
|
<xsl:template match="tmpl[selector='tmINTERVAL' and variation='tvINTV_LBLB']">
|
85
|
-
<mrow> <mo>[</mo> <xsl:apply-templates select="slot[1]"/> <mo>[</mo> </mrow>
|
85
|
+
<mrow> <mo>[</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>[</mo> </mrow>
|
86
86
|
</xsl:template>
|
87
87
|
|
88
88
|
<xsl:template match="tmpl[selector='tmINTERVAL' and variation='tvINTV_RBRB']">
|
89
|
-
<mrow><mo>]</mo> <xsl:apply-templates select="slot[1]"/> <mo>]</mo></mrow>
|
89
|
+
<mrow><mo>]</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>]</mo></mrow>
|
90
90
|
</xsl:template>
|
91
91
|
|
92
92
|
<xsl:template match="tmpl[selector='tmINTERVAL' and variation='tvINTV_RBLB']">
|
93
|
-
<mrow><mo>]</mo> <xsl:apply-templates select="slot[1]"/> <mo>[</mo></mrow>
|
93
|
+
<mrow><mo>]</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>[</mo></mrow>
|
94
94
|
</xsl:template>
|
95
95
|
|
96
96
|
<xsl:template match="tmpl[selector='tmINTERVAL' and variation='tvINTV_LBRP']">
|
97
|
-
<mrow><mo>[</mo> <xsl:apply-templates select="slot[1]"/> <mo>)</mo></mrow>
|
97
|
+
<mrow><mo>[</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>)</mo></mrow>
|
98
98
|
</xsl:template>
|
99
99
|
|
100
100
|
<xsl:template match="tmpl[selector='tmINTERVAL' and variation='tvINTV_LPRB']">
|
101
|
-
<mrow><mo>(</mo> <xsl:apply-templates select="slot[1]"/> <mo>]</mo></mrow>
|
101
|
+
<mrow><mo>(</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>]</mo></mrow>
|
102
102
|
</xsl:template>
|
103
103
|
|
104
104
|
<xsl:template match="tmpl[selector='tmBRACK' and variation='tvFENCE_L' and not(variation='tvFENCE_R')]">
|
105
|
-
<mrow> <mo>[</mo> <xsl:apply-templates select="slot[1]"/> </mrow>
|
105
|
+
<mrow> <mo>[</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> </mrow>
|
106
106
|
</xsl:template>
|
107
107
|
|
108
108
|
<xsl:template match="tmpl[selector='tmBRACK' and variation='tvFENCE_R' and not(variation='tvFENCE_L')]">
|
109
|
-
<mrow><xsl:apply-templates select="slot[1]"/> <mo>]</mo></mrow>
|
109
|
+
<mrow><xsl:apply-templates select="slot[1] | pile[1]"/> <mo>]</mo></mrow>
|
110
110
|
</xsl:template>
|
111
111
|
|
112
112
|
<xsl:template match="tmpl[selector='tmBRACE' and variation='tvFENCE_L' and not(variation='tvFENCE_R')]">
|
113
|
-
<mrow><mo>{</mo> <xsl:apply-templates select="slot[1]"/> </mrow>
|
113
|
+
<mrow><mo>{</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> </mrow>
|
114
114
|
</xsl:template>
|
115
115
|
|
116
116
|
<xsl:template match="tmpl[selector='tmBRACE' and variation='tvFENCE_R' and not(variation='tvFENCE_L')]">
|
117
|
-
<mrow><xsl:apply-templates select="slot[1]"/> <mo>}</mo></mrow>
|
117
|
+
<mrow><xsl:apply-templates select="slot[1] | pile[1]"/> <mo>}</mo></mrow>
|
118
118
|
</xsl:template>
|
119
119
|
|
120
120
|
<xsl:template match="tmpl[selector='tmDIRAC']">
|
121
121
|
<mrow>
|
122
122
|
<mo>〈</mo>
|
123
|
-
<xsl:apply-templates select="slot[1]"/>
|
123
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
124
124
|
<mo>|</mo>
|
125
|
-
<xsl:apply-templates select="slot[2]"/>
|
125
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
126
126
|
<mo>〉</mo>
|
127
127
|
</mrow>
|
128
128
|
</xsl:template>
|
@@ -130,7 +130,7 @@
|
|
130
130
|
<xsl:template match="tmpl[selector='tmDIRAC' and variation='tvDI_RIGHT' and not(variation='tvDI_LEFT')]">
|
131
131
|
<mrow>
|
132
132
|
<mo>|</mo>
|
133
|
-
<xsl:apply-templates select="slot[2]"/>
|
133
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
134
134
|
<mo>〉</mo>
|
135
135
|
</mrow>
|
136
136
|
</xsl:template>
|
@@ -138,25 +138,25 @@
|
|
138
138
|
<xsl:template match="tmpl[selector='tmDIRAC' and variation='tvDI_LEFT' and not(variation='tvDI_RIGHT')]">
|
139
139
|
<mrow>
|
140
140
|
<mo>〈</mo>
|
141
|
-
<xsl:apply-templates select="slot[1]"/>
|
141
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
142
142
|
<mo>|</mo>
|
143
143
|
</mrow>
|
144
144
|
</xsl:template>
|
145
145
|
|
146
146
|
<xsl:template match="tmpl[selector='tmDBAR']">
|
147
|
-
<mrow><mo>‖</mo> <xsl:apply-templates select="slot[1]"/> <mo>‖</mo></mrow>
|
147
|
+
<mrow><mo>‖</mo> <xsl:apply-templates select="slot[1] | pile[1]"/> <mo>‖</mo></mrow>
|
148
148
|
</xsl:template>
|
149
149
|
|
150
150
|
<xsl:template match="tmpl[selector='tmDBAR' and variation='tvFENCE_L' and not(variation='tvFENCE_R')]">
|
151
151
|
<mrow>
|
152
152
|
<mo>‖</mo>
|
153
|
-
<xsl:apply-templates select="slot[1]"/>
|
153
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
154
154
|
</mrow>
|
155
155
|
</xsl:template>
|
156
156
|
|
157
157
|
<xsl:template match="tmpl[selector='tmDBAR' and variation='tvFENCE_R' and not(variation='tvFENCE_L')]">
|
158
158
|
<mrow>
|
159
|
-
<xsl:apply-templates select="slot[1]"/>
|
159
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
160
160
|
<mo>‖</mo>
|
161
161
|
</mrow>
|
162
162
|
</xsl:template>
|
@@ -164,7 +164,7 @@
|
|
164
164
|
<xsl:template match="tmpl[selector='tmOBRACK']">
|
165
165
|
<mrow>
|
166
166
|
<mo>〚</mo>
|
167
|
-
<xsl:apply-templates select="slot[1]"/>
|
167
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
168
168
|
<mo>〛</mo>
|
169
169
|
</mrow>
|
170
170
|
</xsl:template>
|
@@ -172,13 +172,13 @@
|
|
172
172
|
<xsl:template match="tmpl[selector='tmOBRACK' and variation='tvFENCE_L' and not(variation='tvFENCE_R')]">
|
173
173
|
<mrow>
|
174
174
|
<mo>〚</mo>
|
175
|
-
<xsl:apply-templates select="slot[1]"/>
|
175
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
176
176
|
</mrow>
|
177
177
|
</xsl:template>
|
178
178
|
|
179
179
|
<xsl:template match="tmpl[selector='tmOBRACK' and variation='tvFENCE_R' and not(variation='tvFENCE_L')]">
|
180
180
|
<mrow>
|
181
|
-
<xsl:apply-templates select="slot[1]"/>
|
181
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
182
182
|
<mo>〛</mo>
|
183
183
|
</mrow>
|
184
184
|
</xsl:template>
|
@@ -186,40 +186,40 @@
|
|
186
186
|
<xsl:template match="tmpl[selector='tmHBRACE']">
|
187
187
|
<munder>
|
188
188
|
<munder>
|
189
|
-
<xsl:apply-templates select="slot[1]"/>
|
189
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
190
190
|
<mo stretchy="true">︸</mo>
|
191
191
|
</munder>
|
192
|
-
<xsl:apply-templates select="slot[2]"/>
|
192
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
193
193
|
</munder>
|
194
194
|
</xsl:template>
|
195
195
|
|
196
196
|
<xsl:template match="tmpl[selector='tmHBRACE' and variation='tvHB_TOP']">
|
197
197
|
<mover>
|
198
198
|
<mover>
|
199
|
-
<xsl:apply-templates select="slot[1]"/>
|
199
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
200
200
|
<mo stretchy="true">︷</mo>
|
201
201
|
</mover>
|
202
|
-
<xsl:apply-templates select="slot[2]"/>
|
202
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
203
203
|
</mover>
|
204
204
|
</xsl:template>
|
205
205
|
|
206
206
|
<xsl:template match="tmpl[selector='tmHBRACK']">
|
207
207
|
<munder>
|
208
208
|
<munder>
|
209
|
-
<xsl:apply-templates select="slot[1]"/>
|
209
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
210
210
|
<mo stretchy="true">⎵</mo>
|
211
211
|
</munder>
|
212
|
-
<xsl:apply-templates select="slot[2]"/>
|
212
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
213
213
|
</munder>
|
214
214
|
</xsl:template>
|
215
215
|
|
216
216
|
<xsl:template match="tmpl[selector='tmHBRACK' and variation='tvHB_TOP']">
|
217
217
|
<mover>
|
218
218
|
<mover>
|
219
|
-
<xsl:apply-templates select="slot[1]"/>
|
219
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
220
220
|
<mo stretchy="true">⎴</mo>
|
221
221
|
</mover>
|
222
|
-
<xsl:apply-templates select="slot[2]"/>
|
222
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
223
223
|
</mover>
|
224
224
|
</xsl:template>
|
225
225
|
|
data/lib/xsl/frac.xsl
CHANGED
@@ -8,37 +8,37 @@
|
|
8
8
|
|
9
9
|
<xsl:template match="tmpl[selector='tmFRACT']">
|
10
10
|
<mfrac>
|
11
|
-
<xsl:apply-templates select="slot[1]"/>
|
12
|
-
<xsl:apply-templates select="slot[2]"/>
|
11
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
12
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
13
13
|
</mfrac>
|
14
14
|
</xsl:template>
|
15
15
|
|
16
16
|
<xsl:template match="tmpl[selector='tmFRACT' and variation='tvFR_SLASH']">
|
17
17
|
<mfrac bevelled="true">
|
18
|
-
<xsl:apply-templates select="slot[1]"/>
|
19
|
-
<xsl:apply-templates select="slot[2]"/>
|
18
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
19
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
20
20
|
</mfrac>
|
21
21
|
</xsl:template>
|
22
22
|
|
23
23
|
<xsl:template match="tmpl[selector='tmFRACT' and variation='tvFR_SMALL']">
|
24
24
|
<mstyle scriptlevel="+1">
|
25
25
|
<mfrac>
|
26
|
-
<xsl:apply-templates select="slot[1]"/>
|
27
|
-
<xsl:apply-templates select="slot[2]"/>
|
26
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
27
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
28
28
|
</mfrac>
|
29
29
|
</mstyle>
|
30
30
|
</xsl:template>
|
31
31
|
|
32
32
|
|
33
33
|
<xsl:template match="tmpl[selector='tmFRACT' and variation='tvFR_SLASH' and variation='tvFR_BASE']">
|
34
|
-
<mrow><xsl:apply-templates select="slot[1]"/><mo>/</mo><xsl:apply-templates select="slot[2]"/></mrow>
|
34
|
+
<mrow><xsl:apply-templates select="slot[1] | pile[1]"/><mo>/</mo><xsl:apply-templates select="slot[2] | pile[2]"/></mrow>
|
35
35
|
</xsl:template>
|
36
36
|
|
37
37
|
<xsl:template match="tmpl[selector='tmFRACT' and variation='tvFR_SLASH' and variation='tvFR_SMALL']">
|
38
38
|
<mstyle scriptlevel="+1">
|
39
39
|
<mfrac bevelled="true">
|
40
|
-
<xsl:apply-templates select="slot[1]"/>
|
41
|
-
<xsl:apply-templates select="slot[2]"/>
|
40
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
41
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
42
42
|
</mfrac>
|
43
43
|
</mstyle>
|
44
44
|
</xsl:template>
|
data/lib/xsl/int.xsl
CHANGED
@@ -11,23 +11,23 @@
|
|
11
11
|
|
12
12
|
<xsl:template match="tmpl[selector='tmINTOP']">
|
13
13
|
<msubsup>
|
14
|
-
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4]"/></mstyle>
|
15
|
-
<xsl:apply-templates select="slot[2]"/>
|
16
|
-
<xsl:apply-templates select="slot[3]"/>
|
14
|
+
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4] | pile[4]"/></mstyle>
|
15
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
16
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
17
17
|
</msubsup>
|
18
18
|
</xsl:template>
|
19
19
|
|
20
20
|
<xsl:template match="tmpl[selector='tmINTOP' and variation='tvBO_UPPER']">
|
21
21
|
<msup>
|
22
|
-
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4]"/></mstyle>
|
23
|
-
<xsl:apply-templates select="slot[3]"/>
|
22
|
+
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4] | pile[4] | pile[4]"/></mstyle>
|
23
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
24
24
|
</msup>
|
25
25
|
</xsl:template>
|
26
26
|
|
27
27
|
<xsl:template match="tmpl[selector='tmINTOP' and variation='tvBO_LOWER' and not(variation='tvBO_UPPER')]">
|
28
28
|
<msub>
|
29
|
-
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4]"/></mstyle>
|
30
|
-
<xsl:apply-templates select="slot[2]"/>
|
29
|
+
<mstyle mathsize="140%" displaystyle="true"><xsl:apply-templates select="slot[4] | pile[4]"/></mstyle>
|
30
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
31
31
|
</msub>
|
32
32
|
</xsl:template>
|
33
33
|
|
@@ -38,10 +38,10 @@
|
|
38
38
|
<mrow>
|
39
39
|
<msubsup>
|
40
40
|
<mo>∫</mo>
|
41
|
-
<xsl:apply-templates select="slot[2]"/>
|
42
|
-
<xsl:apply-templates select="slot[3]"/>
|
41
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
42
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
43
43
|
</msubsup>
|
44
|
-
<xsl:apply-templates select="slot[1]"/>
|
44
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
45
45
|
</mrow>
|
46
46
|
</mstyle>
|
47
47
|
</xsl:template>
|
@@ -49,7 +49,7 @@
|
|
49
49
|
<xsl:template match="tmpl[selector='tmINTEG' and (not(variation='tvBO_UPPER') and not(variation='tvBO_LOWER'))]">
|
50
50
|
<mstyle displaystyle="true">
|
51
51
|
<mrow><mo>∫</mo>
|
52
|
-
<xsl:apply-templates select="slot[1]"/>
|
52
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
53
53
|
</mrow>
|
54
54
|
</mstyle>
|
55
55
|
</xsl:template>
|
@@ -59,10 +59,10 @@
|
|
59
59
|
<mrow>
|
60
60
|
<munderover>
|
61
61
|
<mo>∫</mo>
|
62
|
-
<xsl:apply-templates select="slot[2]"/>
|
63
|
-
<xsl:apply-templates select="slot[3]"/>
|
62
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
63
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
64
64
|
</munderover>
|
65
|
-
<xsl:apply-templates select="slot[1]"/>
|
65
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
66
66
|
</mrow>
|
67
67
|
</mstyle>
|
68
68
|
</xsl:template>
|
@@ -72,10 +72,10 @@
|
|
72
72
|
<mrow>
|
73
73
|
<msubsup>
|
74
74
|
<mo stretchy="true">∫</mo>
|
75
|
-
<xsl:apply-templates select="slot[2]"/>
|
76
|
-
<xsl:apply-templates select="slot[3]"/>
|
75
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
76
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
77
77
|
</msubsup>
|
78
|
-
<xsl:apply-templates select="slot[1]"/>
|
78
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
79
79
|
</mrow>
|
80
80
|
</mstyle>
|
81
81
|
</xsl:template>
|
@@ -85,9 +85,9 @@
|
|
85
85
|
<mrow>
|
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
|
</mrow>
|
92
92
|
</mstyle>
|
93
93
|
</xsl:template>
|
@@ -97,9 +97,9 @@
|
|
97
97
|
<mrow>
|
98
98
|
<msub>
|
99
99
|
<mo>∬</mo>
|
100
|
-
<xsl:apply-templates select="slot[2]"/>
|
100
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
101
101
|
</msub>
|
102
|
-
<xsl:apply-templates select="slot[1]"/>
|
102
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
103
103
|
</mrow>
|
104
104
|
</mstyle>
|
105
105
|
</xsl:template>
|
@@ -108,7 +108,7 @@
|
|
108
108
|
<mstyle displaystyle="true">
|
109
109
|
<mrow>
|
110
110
|
<mo>∬</mo>
|
111
|
-
<xsl:apply-templates select="slot[1]"/>
|
111
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
112
112
|
</mrow>
|
113
113
|
</mstyle>
|
114
114
|
</xsl:template>
|
@@ -118,9 +118,9 @@
|
|
118
118
|
<mrow>
|
119
119
|
<msub>
|
120
120
|
<mo>∭</mo>
|
121
|
-
<xsl:apply-templates select="slot[2]"/>
|
121
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
122
122
|
</msub>
|
123
|
-
<xsl:apply-templates select="slot[1]"/>
|
123
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
124
124
|
</mrow>
|
125
125
|
</mstyle>
|
126
126
|
</xsl:template>
|
@@ -130,9 +130,9 @@
|
|
130
130
|
<mrow>
|
131
131
|
<msub>
|
132
132
|
<mo>∮</mo>
|
133
|
-
<xsl:apply-templates select="slot[2]"/>
|
133
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
134
134
|
</msub>
|
135
|
-
<xsl:apply-templates select="slot[1]"/>
|
135
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
136
136
|
</mrow>
|
137
137
|
</mstyle>
|
138
138
|
</xsl:template>
|
@@ -142,9 +142,9 @@
|
|
142
142
|
<mrow>
|
143
143
|
<msub>
|
144
144
|
<mo>∲</mo>
|
145
|
-
<xsl:apply-templates select="slot[2]"/>
|
145
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
146
146
|
</msub>
|
147
|
-
<xsl:apply-templates select="slot[1]"/>
|
147
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
148
148
|
</mrow>
|
149
149
|
</mstyle>
|
150
150
|
</xsl:template>
|
@@ -154,9 +154,9 @@
|
|
154
154
|
<mrow>
|
155
155
|
<msub>
|
156
156
|
<mo>∳</mo>
|
157
|
-
<xsl:apply-templates select="slot[2]"/>
|
157
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
158
158
|
</msub>
|
159
|
-
<xsl:apply-templates select="slot[1]"/>
|
159
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
160
160
|
</mrow>
|
161
161
|
</mstyle>
|
162
162
|
</xsl:template>
|
@@ -165,7 +165,7 @@
|
|
165
165
|
<mstyle displaystyle="true">
|
166
166
|
<mrow>
|
167
167
|
<mo>∮</mo>
|
168
|
-
<xsl:apply-templates select="slot[1]"/>
|
168
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
169
169
|
</mrow>
|
170
170
|
</mstyle>
|
171
171
|
</xsl:template>
|
@@ -175,9 +175,9 @@
|
|
175
175
|
<mrow>
|
176
176
|
<munder>
|
177
177
|
<mo>∫</mo>
|
178
|
-
<xsl:apply-templates select="slot[2]"/>
|
178
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
179
179
|
</munder>
|
180
|
-
<xsl:apply-templates select="slot[1]"/>
|
180
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
181
181
|
</mrow>
|
182
182
|
</mstyle>
|
183
183
|
</xsl:template>
|
@@ -187,10 +187,10 @@
|
|
187
187
|
<mrow>
|
188
188
|
<munderover>
|
189
189
|
<mo stretchy="true">∫</mo>
|
190
|
-
<xsl:apply-templates select="slot[2]"/>
|
191
|
-
<xsl:apply-templates select="slot[3]"/>
|
190
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
191
|
+
<xsl:apply-templates select="slot[3] | pile[3]"/>
|
192
192
|
</munderover>
|
193
|
-
<xsl:apply-templates select="slot[1]"/>
|
193
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
194
194
|
</mrow>
|
195
195
|
</mstyle>
|
196
196
|
</xsl:template>
|
@@ -200,9 +200,9 @@
|
|
200
200
|
<mrow>
|
201
201
|
<munder>
|
202
202
|
<mo>∬</mo>
|
203
|
-
<xsl:apply-templates select="slot[2]"/>
|
203
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
204
204
|
</munder>
|
205
|
-
<xsl:apply-templates select="slot[1]"/>
|
205
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
206
206
|
</mrow>
|
207
207
|
</mstyle>
|
208
208
|
</xsl:template>
|
@@ -212,9 +212,9 @@
|
|
212
212
|
<mrow>
|
213
213
|
<msub>
|
214
214
|
<mo>∯</mo>
|
215
|
-
<xsl:apply-templates select="slot[2]"/>
|
215
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
216
216
|
</msub>
|
217
|
-
<xsl:apply-templates select="slot[1]"/>
|
217
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
218
218
|
</mrow>
|
219
219
|
</mstyle>
|
220
220
|
</xsl:template>
|
@@ -224,10 +224,10 @@
|
|
224
224
|
<mrow>
|
225
225
|
<msub>
|
226
226
|
<mo stretchy="true">∬</mo>
|
227
|
-
<xsl:apply-templates select="slot[2]"/>
|
227
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
228
228
|
</msub>
|
229
|
-
<xsl:apply-templates select="slot[1]"/>
|
230
|
-
<xsl:apply-templates select="slot[1]"/>
|
229
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
230
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
231
231
|
</mrow>
|
232
232
|
|
233
233
|
</mstyle>
|
@@ -238,9 +238,9 @@
|
|
238
238
|
<mrow>
|
239
239
|
<munder>
|
240
240
|
<mo stretchy="true">∬</mo>
|
241
|
-
<xsl:apply-templates select="slot[2]"/>
|
241
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
242
242
|
</munder>
|
243
|
-
<xsl:apply-templates select="slot[1]"/>
|
243
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
244
244
|
</mrow>
|
245
245
|
</mstyle>
|
246
246
|
</xsl:template>
|
@@ -251,9 +251,9 @@
|
|
251
251
|
<mrow>
|
252
252
|
<munder>
|
253
253
|
<mo>∮</mo>
|
254
|
-
<xsl:apply-templates select="slot[2]"/>
|
254
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
255
255
|
</munder>
|
256
|
-
<xsl:apply-templates select="slot[1]"/>
|
256
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
257
257
|
</mrow>
|
258
258
|
</mstyle>
|
259
259
|
</xsl:template>
|
@@ -263,9 +263,9 @@
|
|
263
263
|
<mrow>
|
264
264
|
<munder>
|
265
265
|
<mo>∲</mo>
|
266
|
-
<xsl:apply-templates select="slot[2]"/>
|
266
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
267
267
|
</munder>
|
268
|
-
<xsl:apply-templates select="slot[1]"/>
|
268
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
269
269
|
</mrow>
|
270
270
|
</mstyle>
|
271
271
|
</xsl:template>
|
@@ -275,9 +275,9 @@
|
|
275
275
|
<mrow>
|
276
276
|
<munder>
|
277
277
|
<mo>∳</mo>
|
278
|
-
<xsl:apply-templates select="slot[2]"/>
|
278
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
279
279
|
</munder>
|
280
|
-
<xsl:apply-templates select="slot[1]"/>
|
280
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
281
281
|
</mrow>
|
282
282
|
</mstyle>
|
283
283
|
</xsl:template>
|
@@ -287,9 +287,9 @@
|
|
287
287
|
<mrow>
|
288
288
|
<munder>
|
289
289
|
<mo>∭</mo>
|
290
|
-
<xsl:apply-templates select="slot[2]"/>
|
290
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
291
291
|
</munder>
|
292
|
-
<xsl:apply-templates select="slot[1]"/>
|
292
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
293
293
|
</mrow>
|
294
294
|
</mstyle>
|
295
295
|
</xsl:template>
|
@@ -299,9 +299,9 @@
|
|
299
299
|
<mrow>
|
300
300
|
<msub>
|
301
301
|
<mo>∰</mo>
|
302
|
-
<xsl:apply-templates select="slot[2]"/>
|
302
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
303
303
|
</msub>
|
304
|
-
<xsl:apply-templates select="slot[1]"/>
|
304
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
305
305
|
</mrow>
|
306
306
|
</mstyle>
|
307
307
|
</xsl:template>
|
@@ -311,9 +311,9 @@
|
|
311
311
|
<mrow>
|
312
312
|
<msub>
|
313
313
|
<mo stretchy="true">∭</mo>
|
314
|
-
<xsl:apply-templates select="slot[2]"/>
|
314
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
315
315
|
</msub>
|
316
|
-
<xsl:apply-templates select="slot[1]"/>
|
316
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
317
317
|
</mrow>
|
318
318
|
</mstyle>
|
319
319
|
</xsl:template>
|
@@ -323,9 +323,9 @@
|
|
323
323
|
<mrow>
|
324
324
|
<msub>
|
325
325
|
<mo stretchy="true">∲</mo>
|
326
|
-
<xsl:apply-templates select="slot[2]"/>
|
326
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
327
327
|
</msub>
|
328
|
-
<xsl:apply-templates select="slot[1]"/>
|
328
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
329
329
|
</mrow>
|
330
330
|
</mstyle>
|
331
331
|
</xsl:template>
|
@@ -335,9 +335,9 @@
|
|
335
335
|
<mrow>
|
336
336
|
<msub>
|
337
337
|
<mo stretchy="true">∳</mo>
|
338
|
-
<xsl:apply-templates select="slot[2]"/>
|
338
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
339
339
|
</msub>
|
340
|
-
<xsl:apply-templates select="slot[1]"/>
|
340
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
341
341
|
</mrow>
|
342
342
|
</mstyle>
|
343
343
|
</xsl:template>
|
@@ -348,9 +348,9 @@
|
|
348
348
|
<mrow>
|
349
349
|
<msub>
|
350
350
|
<mo stretchy="true">∮</mo>
|
351
|
-
<xsl:apply-templates select="slot[2]"/>
|
351
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
352
352
|
</msub>
|
353
|
-
<xsl:apply-templates select="slot[1]"/>
|
353
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
354
354
|
</mrow>
|
355
355
|
</mstyle>
|
356
356
|
</xsl:template>
|
@@ -360,9 +360,9 @@
|
|
360
360
|
<mrow>
|
361
361
|
<munder>
|
362
362
|
<mo>∯</mo>
|
363
|
-
<xsl:apply-templates select="slot[2]"/>
|
363
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
364
364
|
</munder>
|
365
|
-
<xsl:apply-templates select="slot[1]"/>
|
365
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
366
366
|
</mrow>
|
367
367
|
</mstyle>
|
368
368
|
</xsl:template>
|
@@ -372,9 +372,9 @@
|
|
372
372
|
<mrow>
|
373
373
|
<msub>
|
374
374
|
<mo stretchy="true">∯</mo>
|
375
|
-
<xsl:apply-templates select="slot[2]"/>
|
375
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
376
376
|
</msub>
|
377
|
-
<xsl:apply-templates select="slot[1]"/>
|
377
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
378
378
|
</mrow>
|
379
379
|
</mstyle>
|
380
380
|
</xsl:template>
|
@@ -383,7 +383,7 @@
|
|
383
383
|
<mstyle displaystyle="true">
|
384
384
|
<mrow>
|
385
385
|
<mo>∯</mo>
|
386
|
-
<xsl:apply-templates select="slot[1]"/>
|
386
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
387
387
|
</mrow>
|
388
388
|
</mstyle>
|
389
389
|
</xsl:template>
|
@@ -392,7 +392,7 @@
|
|
392
392
|
<mstyle displaystyle="true">
|
393
393
|
<mrow>
|
394
394
|
<mo>∭</mo>
|
395
|
-
<xsl:apply-templates select="slot[1]"/>
|
395
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
396
396
|
</mrow>
|
397
397
|
</mstyle>
|
398
398
|
</xsl:template>
|
@@ -402,9 +402,9 @@
|
|
402
402
|
<mrow>
|
403
403
|
<munder>
|
404
404
|
<mo stretchy="true">∭</mo>
|
405
|
-
<xsl:apply-templates select="slot[2]"/>
|
405
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
406
406
|
</munder>
|
407
|
-
<xsl:apply-templates select="slot[1]"/>
|
407
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
408
408
|
</mrow>
|
409
409
|
</mstyle>
|
410
410
|
</xsl:template>
|
@@ -414,9 +414,9 @@
|
|
414
414
|
<mrow>
|
415
415
|
<munder>
|
416
416
|
<mo>∰</mo>
|
417
|
-
<xsl:apply-templates select="slot[2]"/>
|
417
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
418
418
|
</munder>
|
419
|
-
<xsl:apply-templates select="slot[1]"/>
|
419
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
420
420
|
</mrow>
|
421
421
|
</mstyle>
|
422
422
|
</xsl:template>
|
@@ -426,9 +426,9 @@
|
|
426
426
|
<mrow>
|
427
427
|
<msub>
|
428
428
|
<mo stretchy="true">∰</mo>
|
429
|
-
<xsl:apply-templates select="slot[2]"/>
|
429
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
430
430
|
</msub>
|
431
|
-
<xsl:apply-templates select="slot[1]"/>
|
431
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
432
432
|
</mrow>
|
433
433
|
</mstyle>
|
434
434
|
</xsl:template>
|
@@ -438,7 +438,7 @@
|
|
438
438
|
<mstyle displaystyle="true">
|
439
439
|
<mrow>
|
440
440
|
<mo>∲</mo>
|
441
|
-
<xsl:apply-templates select="slot[1]"/>
|
441
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
442
442
|
</mrow>
|
443
443
|
</mstyle>
|
444
444
|
</xsl:template>
|
@@ -447,7 +447,7 @@
|
|
447
447
|
<mstyle displaystyle="true">
|
448
448
|
<mrow>
|
449
449
|
<mo>∳</mo>
|
450
|
-
<xsl:apply-templates select="slot[1]"/>
|
450
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
451
451
|
</mrow>
|
452
452
|
</mstyle>
|
453
453
|
</xsl:template>
|
@@ -457,9 +457,9 @@
|
|
457
457
|
<mrow>
|
458
458
|
<msub>
|
459
459
|
<mo stretchy="true">∫</mo>
|
460
|
-
<xsl:apply-templates select="slot[2]"/>
|
460
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
461
461
|
</msub>
|
462
|
-
<xsl:apply-templates select="slot[1]"/>
|
462
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
463
463
|
</mrow>
|
464
464
|
</mstyle>
|
465
465
|
</xsl:template>
|
@@ -469,9 +469,9 @@
|
|
469
469
|
<mrow>
|
470
470
|
<munder>
|
471
471
|
<mo stretchy="true">∮</mo>
|
472
|
-
<xsl:apply-templates select="slot[2]"/>
|
472
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
473
473
|
</munder>
|
474
|
-
<xsl:apply-templates select="slot[1]"/>
|
474
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
475
475
|
</mrow>
|
476
476
|
</mstyle>
|
477
477
|
</xsl:template>
|
@@ -481,9 +481,9 @@
|
|
481
481
|
<mrow>
|
482
482
|
<munder>
|
483
483
|
<mo stretchy="true">∳</mo>
|
484
|
-
<xsl:apply-templates select="slot[2]"/>
|
484
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
485
485
|
</munder>
|
486
|
-
<xsl:apply-templates select="slot[1]"/>
|
486
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
487
487
|
</mrow>
|
488
488
|
</mstyle>
|
489
489
|
</xsl:template>
|
@@ -493,9 +493,9 @@
|
|
493
493
|
<mrow>
|
494
494
|
<munder>
|
495
495
|
<mo stretchy="true">∲</mo>
|
496
|
-
<xsl:apply-templates select="slot[2]"/>
|
496
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
497
497
|
</munder>
|
498
|
-
<xsl:apply-templates select="slot[1]"/>
|
498
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
499
499
|
</mrow>
|
500
500
|
</mstyle>
|
501
501
|
</xsl:template>
|
@@ -504,7 +504,7 @@
|
|
504
504
|
<mstyle displaystyle="true">
|
505
505
|
<mrow>
|
506
506
|
<mo stretchy="true">∫</mo>
|
507
|
-
<xsl:apply-templates select="slot[1]"/>
|
507
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
508
508
|
</mrow>
|
509
509
|
</mstyle>
|
510
510
|
</xsl:template>
|
@@ -513,7 +513,7 @@
|
|
513
513
|
<mstyle displaystyle="true">
|
514
514
|
<mrow>
|
515
515
|
<mo stretchy="true">∬</mo>
|
516
|
-
<xsl:apply-templates select="slot[1]"/>
|
516
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
517
517
|
</mrow>
|
518
518
|
</mstyle>
|
519
519
|
</xsl:template>
|
@@ -522,7 +522,7 @@
|
|
522
522
|
<mstyle displaystyle="true">
|
523
523
|
<mrow>
|
524
524
|
<mo stretchy="true">∭</mo>
|
525
|
-
<xsl:apply-templates select="slot[1]"/>
|
525
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
526
526
|
</mrow>
|
527
527
|
</mstyle>
|
528
528
|
</xsl:template>
|
@@ -532,9 +532,9 @@
|
|
532
532
|
<mrow>
|
533
533
|
<munder>
|
534
534
|
<mo stretchy="true">∫</mo>
|
535
|
-
<xsl:apply-templates select="slot[2]"/>
|
535
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
536
536
|
</munder>
|
537
|
-
<xsl:apply-templates select="slot[1]"/>
|
537
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
538
538
|
</mrow>
|
539
539
|
</mstyle>
|
540
540
|
</xsl:template>
|
@@ -543,7 +543,7 @@
|
|
543
543
|
<mstyle displaystyle="true">
|
544
544
|
<mrow>
|
545
545
|
<mo>∰</mo>
|
546
|
-
<xsl:apply-templates select="slot[1]"/>
|
546
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
547
547
|
</mrow>
|
548
548
|
</mstyle>
|
549
549
|
</xsl:template>
|
@@ -553,9 +553,9 @@
|
|
553
553
|
<mrow>
|
554
554
|
<munder>
|
555
555
|
<mo stretchy="true">∰</mo>
|
556
|
-
<xsl:apply-templates select="slot[2]"/>
|
556
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
557
557
|
</munder>
|
558
|
-
<xsl:apply-templates select="slot[1]"/>
|
558
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
559
559
|
</mrow>
|
560
560
|
</mstyle>
|
561
561
|
</xsl:template>
|
@@ -564,7 +564,7 @@
|
|
564
564
|
<mstyle displaystyle="true">
|
565
565
|
<mrow>
|
566
566
|
<mo stretchy="true">∳</mo>
|
567
|
-
<xsl:apply-templates select="slot[1]"/>
|
567
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
568
568
|
</mrow>
|
569
569
|
</mstyle>
|
570
570
|
</xsl:template>
|
@@ -574,7 +574,7 @@
|
|
574
574
|
<mstyle displaystyle="true">
|
575
575
|
<mrow>
|
576
576
|
<mo stretchy="true">∮</mo>
|
577
|
-
<xsl:apply-templates select="slot[1]"/>
|
577
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
578
578
|
</mrow>
|
579
579
|
</mstyle>
|
580
580
|
</xsl:template>
|
@@ -585,9 +585,9 @@
|
|
585
585
|
<mrow>
|
586
586
|
<munder>
|
587
587
|
<mo stretchy="true">∯</mo>
|
588
|
-
<xsl:apply-templates select="slot[2]"/>
|
588
|
+
<xsl:apply-templates select="slot[2] | pile[2]"/>
|
589
589
|
</munder>
|
590
|
-
<xsl:apply-templates select="slot[1]"/>
|
590
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
591
591
|
</mrow>
|
592
592
|
</mstyle>
|
593
593
|
</xsl:template>
|
@@ -596,7 +596,7 @@
|
|
596
596
|
<mstyle displaystyle="true">
|
597
597
|
<mrow>
|
598
598
|
<mo stretchy="true">∲</mo>
|
599
|
-
<xsl:apply-templates select="slot[1]"/>
|
599
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
600
600
|
</mrow>
|
601
601
|
</mstyle>
|
602
602
|
</xsl:template>
|
@@ -606,7 +606,7 @@
|
|
606
606
|
<mstyle displaystyle="true">
|
607
607
|
<mrow>
|
608
608
|
<mo stretchy="true">∯</mo>
|
609
|
-
<xsl:apply-templates select="slot[1]"/>
|
609
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
610
610
|
</mrow>
|
611
611
|
</mstyle>
|
612
612
|
</xsl:template>
|
@@ -615,7 +615,7 @@
|
|
615
615
|
<mstyle displaystyle="true">
|
616
616
|
<mrow>
|
617
617
|
<mo stretchy="true">∰</mo>
|
618
|
-
<xsl:apply-templates select="slot[1]"/>
|
618
|
+
<xsl:apply-templates select="slot[1] | pile[1]"/>
|
619
619
|
</mrow>
|
620
620
|
</mstyle>
|
621
621
|
</xsl:template>
|