mathtype_to_mathml_plus 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/.rspec +2 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +3 -0
  6. data/Gemfile +6 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +45 -0
  9. data/Rakefile +7 -0
  10. data/lib/mathtype_to_mathml/char_replacer.rb +366 -0
  11. data/lib/mathtype_to_mathml/mover.rb +151 -0
  12. data/lib/mathtype_to_mathml/version.rb +3 -0
  13. data/lib/mathtype_to_mathml.rb +45 -0
  14. data/lib/transform.xsl +53 -0
  15. data/lib/xsl/arrow.xsl +319 -0
  16. data/lib/xsl/box.xsl +42 -0
  17. data/lib/xsl/char.xsl +1854 -0
  18. data/lib/xsl/embellishment.xsl +389 -0
  19. data/lib/xsl/fence.xsl +228 -0
  20. data/lib/xsl/frac.xsl +46 -0
  21. data/lib/xsl/int.xsl +622 -0
  22. data/lib/xsl/lim.xsl +32 -0
  23. data/lib/xsl/long_division.xsl +32 -0
  24. data/lib/xsl/long_embellishment.xsl +150 -0
  25. data/lib/xsl/matrix.xsl +115 -0
  26. data/lib/xsl/pile.xsl +54 -0
  27. data/lib/xsl/product_coproduct.xsl +107 -0
  28. data/lib/xsl/subsup.xsl +55 -0
  29. data/lib/xsl/sum.xsl +81 -0
  30. data/lib/xsl/union_intersection.xsl +104 -0
  31. data/mathtype_to_mathml.gemspec +29 -0
  32. data/spec/fixtures/expected/280.xml +122 -0
  33. data/spec/fixtures/expected/281.xml +60 -0
  34. data/spec/fixtures/expected/299.xml +70 -0
  35. data/spec/fixtures/expected/326.xml +173 -0
  36. data/spec/fixtures/expected/424.xml +425 -0
  37. data/spec/fixtures/expected/450.xml +174 -0
  38. data/spec/fixtures/expected/452.xml +166 -0
  39. data/spec/fixtures/expected/478.xml +303 -0
  40. data/spec/fixtures/expected/629.xml +98 -0
  41. data/spec/fixtures/expected/arrows.xml +389 -0
  42. data/spec/fixtures/expected/boxes.xml +22 -0
  43. data/spec/fixtures/expected/embellishments.xml +178 -0
  44. data/spec/fixtures/expected/embellishments_roots_long_divisions.xml +162 -0
  45. data/spec/fixtures/expected/equation1.xml +52 -0
  46. data/spec/fixtures/expected/equation10.xml +19 -0
  47. data/spec/fixtures/expected/equation11.xml +17 -0
  48. data/spec/fixtures/expected/equation12.xml +34 -0
  49. data/spec/fixtures/expected/equation13.xml +113 -0
  50. data/spec/fixtures/expected/equation14.xml +54 -0
  51. data/spec/fixtures/expected/equation2.xml +33 -0
  52. data/spec/fixtures/expected/equation3.xml +324 -0
  53. data/spec/fixtures/expected/equation4.xml +14 -0
  54. data/spec/fixtures/expected/equation5.xml +23 -0
  55. data/spec/fixtures/expected/equation6.xml +13 -0
  56. data/spec/fixtures/expected/equation7.xml +19 -0
  57. data/spec/fixtures/expected/equation8.xml +17 -0
  58. data/spec/fixtures/expected/equation9.xml +15 -0
  59. data/spec/fixtures/expected/fences.xml +64 -0
  60. data/spec/fixtures/expected/integrals.xml +264 -0
  61. data/spec/fixtures/expected/matrices.xml +253 -0
  62. data/spec/fixtures/expected/sums.xml +36 -0
  63. data/spec/fixtures/expected/unions_and_intersections.xml +140 -0
  64. data/spec/fixtures/input/280.bin +0 -0
  65. data/spec/fixtures/input/281.bin +0 -0
  66. data/spec/fixtures/input/299.bin +0 -0
  67. data/spec/fixtures/input/326.bin +0 -0
  68. data/spec/fixtures/input/424.bin +0 -0
  69. data/spec/fixtures/input/450.bin +0 -0
  70. data/spec/fixtures/input/452.bin +0 -0
  71. data/spec/fixtures/input/478.bin +0 -0
  72. data/spec/fixtures/input/629.bin +0 -0
  73. data/spec/fixtures/input/arrows.bin +0 -0
  74. data/spec/fixtures/input/boxes.bin +0 -0
  75. data/spec/fixtures/input/embellishments.bin +0 -0
  76. data/spec/fixtures/input/embellishments_roots_long_divisions.bin +0 -0
  77. data/spec/fixtures/input/equation1.bin +0 -0
  78. data/spec/fixtures/input/equation10.bin +0 -0
  79. data/spec/fixtures/input/equation11.bin +0 -0
  80. data/spec/fixtures/input/equation12.bin +0 -0
  81. data/spec/fixtures/input/equation13.bin +0 -0
  82. data/spec/fixtures/input/equation14.bin +0 -0
  83. data/spec/fixtures/input/equation2.bin +0 -0
  84. data/spec/fixtures/input/equation3.bin +0 -0
  85. data/spec/fixtures/input/equation4.bin +0 -0
  86. data/spec/fixtures/input/equation5.bin +0 -0
  87. data/spec/fixtures/input/equation6.bin +0 -0
  88. data/spec/fixtures/input/equation7.bin +0 -0
  89. data/spec/fixtures/input/equation8.bin +0 -0
  90. data/spec/fixtures/input/equation9.bin +0 -0
  91. data/spec/fixtures/input/fences.bin +0 -0
  92. data/spec/fixtures/input/integrals.bin +0 -0
  93. data/spec/fixtures/input/matrices.bin +0 -0
  94. data/spec/fixtures/input/sums.bin +0 -0
  95. data/spec/fixtures/input/unions_and_intersections.bin +0 -0
  96. data/spec/html_output.rb +28 -0
  97. data/spec/mathtype_to_mathml_spec.rb +16 -0
  98. data/spec/spec_helper.rb +4 -0
  99. metadata +305 -0
@@ -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'>&#x02DC;</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'>&#x005E;</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'>&#x2322;</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'>&#xFE39;</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'>&#x00AF;</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'>&#x00AF;</mo>
41
+ </mover>
42
+ <mo stretchy='true'>&#x00AF;</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'>&#x2192;</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'>&#x2190;</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'>&#x21C0;</mo>
76
+ </mover>
77
+ <mo>+</mo><mover accent='true'>
78
+ <mrow>
79
+ <mi>k</mi><mo>&#x2212;</mo><mn>4</mn></mrow>
80
+ <mo stretchy='true'>&#x2194;</mo>
81
+ </mover>
82
+ <mo>+</mo><munder accentunder='true'>
83
+ <mrow>
84
+ <mi>c</mi><mo>&#x2212;</mo><mi>d</mi></mrow>
85
+ <mo stretchy='true'>&#x2192;</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'>&#x2190;</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'>&#x21C1;</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'>&#x2194;</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>
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0"?>
2
+ <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
3
+ <mrow>
4
+ <msub>
5
+ <mrow>
6
+ <mi>p</mi>
7
+ </mrow>
8
+ <mrow>
9
+ <mi>r</mi>
10
+ </mrow>
11
+ </msub>
12
+ <mo>&#x003D;</mo>
13
+ <mfrac>
14
+ <mrow>
15
+ <mi>m</mi>
16
+ </mrow>
17
+ <mrow>
18
+ <mi>r</mi>
19
+ </mrow>
20
+ </mfrac>
21
+ <mstyle displaystyle="true">
22
+ <munderover>
23
+ <mo>&#x2211;</mo>
24
+ <mrow>
25
+ <mi>i</mi>
26
+ <mo>&#x003D;</mo>
27
+ <mn>0</mn>
28
+ </mrow>
29
+ <mrow>
30
+ <mi>r</mi>
31
+ <mo>&#x2212;</mo>
32
+ <mn>1</mn>
33
+ </mrow>
34
+ </munderover>
35
+ <mrow>
36
+ <mfrac>
37
+ <mrow>
38
+ <mi>p</mi>
39
+ <mi>i</mi>
40
+ </mrow>
41
+ <mrow>
42
+ <mi>r</mi>
43
+ <mo>&#x2212;</mo>
44
+ <mi>i</mi>
45
+ <mo>&#x002B;</mo>
46
+ <mn>1</mn>
47
+ </mrow>
48
+ </mfrac>
49
+ </mrow>
50
+ </mstyle>
51
+ </mrow>
52
+ </math>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0"?>
2
+ <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
3
+ <mrow>
4
+ <mstyle displaystyle="true">
5
+ <munderover>
6
+ <mo>&#x222A;</mo>
7
+ <mrow>
8
+ <mi>b</mi>
9
+ </mrow>
10
+ <mrow>
11
+ <mi>a</mi>
12
+ </mrow>
13
+ </munderover>
14
+ <mrow>
15
+ <mi>c</mi>
16
+ </mrow>
17
+ </mstyle>
18
+ </mrow>
19
+ </math>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
3
+ <mrow>
4
+ <msup>
5
+ <mrow>
6
+ <mn>&#x0028;</mn>
7
+ <mi>a</mi>
8
+ <mo>&#x2212;</mo>
9
+ <mi>b</mi>
10
+ <mn>&#x0029;</mn>
11
+ </mrow>
12
+ <mrow>
13
+ <mi>c</mi>
14
+ </mrow>
15
+ </msup>
16
+ </mrow>
17
+ </math>
@@ -0,0 +1,34 @@
1
+ <?xml version="1.0"?>
2
+ <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
3
+ <mrow>
4
+ <msup>
5
+ <mrow>
6
+ <mn>&#x0028;</mn>
7
+ <mi>a</mi>
8
+ <mo>&#x2212;</mo>
9
+ <mi>b</mi>
10
+ <mn>&#x0029;</mn>
11
+ </mrow>
12
+ <mrow>
13
+ <mi>c</mi>
14
+ </mrow>
15
+ </msup>
16
+ <mo>&#x002B;</mo>
17
+ <msup>
18
+ <mrow>
19
+ <mrow>
20
+ <mo>(</mo>
21
+ <mrow>
22
+ <mi>b</mi>
23
+ <mo>&#x002B;</mo>
24
+ <mi>c</mi>
25
+ </mrow>
26
+ <mo>)</mo>
27
+ </mrow>
28
+ </mrow>
29
+ <mrow>
30
+ <mn>2</mn>
31
+ </mrow>
32
+ </msup>
33
+ </mrow>
34
+ </math>
@@ -0,0 +1,113 @@
1
+ <?xml version="1.0"?>
2
+ <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
3
+ <mrow>
4
+ <msup>
5
+ <mrow>
6
+ <mn>&#x0028;</mn>
7
+ <mi>a</mi>
8
+ <mo>&#x002B;</mo>
9
+ <mi>b</mi>
10
+ <mn>&#x0029;</mn>
11
+ </mrow>
12
+ <mrow>
13
+ <mi>c</mi>
14
+ </mrow>
15
+ </msup>
16
+ <mo>&#x002B;</mo>
17
+ <msup>
18
+ <mrow>
19
+ <mn>&#x005B;</mn>
20
+ <mi>d</mi>
21
+ <mo>&#x002B;</mo>
22
+ <mi>f</mi>
23
+ <mn>&#x005D;</mn>
24
+ </mrow>
25
+ <mrow>
26
+ <mn>4</mn>
27
+ </mrow>
28
+ </msup>
29
+ <mo>&#x002B;</mo>
30
+ <mmultiscripts>
31
+ <mrow>
32
+ <mi>c</mi>
33
+ </mrow>
34
+ <mprescripts/>
35
+ <mrow>
36
+ <mi>b</mi>
37
+ </mrow>
38
+ <mrow>
39
+ <mi>a</mi>
40
+ </mrow>
41
+ </mmultiscripts>
42
+ <mo>&#x002B;</mo>
43
+ <mmultiscripts>
44
+ <mrow>
45
+ <mi>f</mi>
46
+ </mrow>
47
+ <mprescripts/>
48
+ <mrow>
49
+ <mi>e</mi>
50
+ </mrow>
51
+ <mrow>
52
+ <mi>d</mi>
53
+ </mrow>
54
+ </mmultiscripts>
55
+ <mo>&#x002B;</mo>
56
+ <msup>
57
+ <mrow>
58
+ <mrow>
59
+ <mo>(</mo>
60
+ <mrow>
61
+ <mi>g</mi>
62
+ <mo>&#x2212;</mo>
63
+ <mi>h</mi>
64
+ </mrow>
65
+ <mo>)</mo>
66
+ </mrow>
67
+ </mrow>
68
+ <mrow>
69
+ <mi>i</mi>
70
+ </mrow>
71
+ </msup>
72
+ <mo>&#x002B;</mo>
73
+ <msub>
74
+ <mrow>
75
+ <mi>j</mi>
76
+ </mrow>
77
+ <mrow>
78
+ <mi>k</mi>
79
+ </mrow>
80
+ </msub>
81
+ <mo>&#x002B;</mo>
82
+ <mmultiscripts>
83
+ <mrow>
84
+ <mi>m</mi>
85
+ </mrow>
86
+ <mprescripts/>
87
+ <mrow>
88
+ <mi>l</mi>
89
+ </mrow>
90
+ <none/>
91
+ </mmultiscripts>
92
+ <mo>&#x002B;</mo>
93
+ <mmultiscripts>
94
+ <mrow>
95
+ <mi>o</mi>
96
+ </mrow>
97
+ <mprescripts/>
98
+ <none/>
99
+ <mrow>
100
+ <mi>n</mi>
101
+ </mrow>
102
+ </mmultiscripts>
103
+ <mo>&#x002B;</mo>
104
+ <msup>
105
+ <mrow>
106
+ <mi>p</mi>
107
+ </mrow>
108
+ <mrow>
109
+ <mi>r</mi>
110
+ </mrow>
111
+ </msup>
112
+ </mrow>
113
+ </math>
@@ -0,0 +1,54 @@
1
+ <math display='block'>
2
+ <semantics>
3
+ <mrow>
4
+ <msup>
5
+ <mrow>
6
+ <mi>cos</mi></mrow>
7
+ <mrow>
8
+ <mo>&#x2212;</mo><mn>1</mn></mrow>
9
+ </msup>
10
+ <mi>&#x03B8;</mi><mrow><mo>(</mo>
11
+ <mrow>
12
+ <mfrac>
13
+ <mi>&#x03C0;</mi>
14
+ <mn>2</mn>
15
+ </mfrac>
16
+ <mo>&#x2212;</mo><mi>&#x03B8;</mi></mrow>
17
+ <mo>)</mo></mrow><msup>
18
+ <mi>e</mi>
19
+ <mrow>
20
+ <mi>i</mi><mi>&#x03B8;</mi></mrow>
21
+ </msup>
22
+ <mi>arcsin</mi><mi>&#x03B8;</mi><mi mathvariant='fraktur'>M</mi><mi>&#x221E;</mi><mi>&#x2124;</mi><mi mathvariant='fraktur'>A</mi><mi>&#x0398;</mi><mi>&#x019B;</mi><mfrac>
23
+ <mrow>
24
+ <msup>
25
+ <mo>&#x2202;</mo>
26
+ <mn>2</mn>
27
+ </msup>
28
+ <mi>&#x03A9;</mi></mrow>
29
+ <mrow>
30
+ <mo>&#x2202;</mo><mi>u</mi><mo>&#x2202;</mo><mi>v</mi></mrow>
31
+ </mfrac>
32
+ <mrow><mo>[</mo> <mrow>
33
+ <mn>0,1</mn></mrow> <mo>]</mo></mrow><mstyle displaystyle='true'>
34
+ <mrow>
35
+ <munder>
36
+ <mo>&#x222F;</mo>
37
+ <mi>d</mi>
38
+ </munder>
39
+ <mi>c</mi>
40
+ </mrow>
41
+
42
+ </mstyle><mstyle displaystyle='true'>
43
+ <mrow><munderover>
44
+ <mo>&#x222B;</mo>
45
+ <mi>v</mi>
46
+ <mi>d</mi>
47
+ </munderover>
48
+ <mi>a</mi>
49
+ </mrow>
50
+
51
+ </mstyle></mrow>
52
+ <annotation encoding='MathType-MTEF'>MathType@MTEF@5@5@+=faaagCart1ev2aaaKnaaaaWenf2ys9wBH5garuavP1wzZbItLDhis9wBH5garmWu51MyVXgaruWqVvNCPvMCG4uz3bqee0evGueE0jxyaibaieYlf9irVeeu0dXdh9vqqj=hHeeu0xXdbba9frFj0=OqFfea0dXdd9vqaq=JfrVkFHe9pgea0dXdar=Jb9hs0dXdbPYxe9vr0=vr0=vqpi0dc9GqpWqaaeaabiGaciaacaqabeaadaqaaqaaaOqaaiGacogacaGGVbGaai4CamaaCaaaleqabaGaeyOeI0IaaGymaaaakiabeI7aXnaabmaabaWaaSaaaeaacqaHapaCaeaacaaIYaaaaiabgkHiTiabeI7aXbGaayjkaiaawMcaaiaadwgadaahaaWcbeqaaiaadMgacqaH4oqCaaGcciGGHbGaaiOCaiaacogacaGGZbGaaiyAaiaac6gacqaH4oqCtuuDJXwAKzKCHTgD1jharyqr1ngBPrgigjxyRrxDYbacfaGae8hdW3KaeyOhIu6efv3ySLgznfgDOjdarCqr1ngBPrginfgDObcv39gaiyqacqGFKeIwcqWFaaFqcqqHyoqucqWIBgardaWcaaqaaiabgkGi2oaaCaaaleqabaGaaGOmaaaakiabgM6axbqaaiabgkGi2kaadwhacqGHciITcaWG2baaamaadmaabaGaaGimaiaacYcacaaIXaaacaGLBbGaayzxaaWaa8GvaeaacaWGJbaaleaacaWGKbaabeqdcqWIs4U0cqGHRiI8cqGHRiI8aOWaa8qCaeaacaWGHbaaleaacaWG2baabaGaamizaaqdcqGHRiI8aaaa@82BE@</annotation>
53
+ </semantics>
54
+ </math>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0"?>
2
+ <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
3
+ <mrow>
4
+ <mfrac>
5
+ <mrow>
6
+ <mo>&#x2212;</mo>
7
+ <mi>b</mi>
8
+ <mo>&#x00B1;</mo>
9
+ <msqrt>
10
+ <mrow>
11
+ <msup>
12
+ <mrow>
13
+ <mi>b</mi>
14
+ </mrow>
15
+ <mrow>
16
+ <mn>2</mn>
17
+ </mrow>
18
+ </msup>
19
+ <mo>&#x2212;</mo>
20
+ <mn>4</mn>
21
+ <mi>a</mi>
22
+ <mi>c</mi>
23
+ </mrow>
24
+ <mrow/>
25
+ </msqrt>
26
+ </mrow>
27
+ <mrow>
28
+ <mn>2</mn>
29
+ <mi>a</mi>
30
+ </mrow>
31
+ </mfrac>
32
+ </mrow>
33
+ </math>