mathtype 0.0.8 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/.travis.yml +7 -0
  4. data/Rakefile +8 -0
  5. data/lib/file_parser/ole.rb +15 -0
  6. data/lib/file_parser/parser.rb +19 -0
  7. data/lib/file_parser/wmf.rb +28 -0
  8. data/lib/mathtype.rb +30 -7
  9. data/lib/mathtype/version.rb +1 -1
  10. data/lib/records/bintypes.rb +18 -0
  11. data/lib/records/mtef.rb +8 -114
  12. data/lib/records/nudge.rb +9 -5
  13. data/lib/records/ruler.rb +1 -1
  14. data/lib/records/typesizes.rb +5 -10
  15. data/lib/records3/char.rb +53 -0
  16. data/lib/records3/embell.rb +109 -0
  17. data/lib/records3/font.rb +27 -0
  18. data/lib/records3/line.rb +47 -0
  19. data/lib/records3/matrix.rb +80 -0
  20. data/lib/records3/mtef.rb +97 -0
  21. data/lib/records3/options.rb +5 -0
  22. data/lib/records3/pile.rb +43 -0
  23. data/lib/records3/size.rb +75 -0
  24. data/lib/records3/snapshot.rb +19 -0
  25. data/lib/records3/tmpl.rb +751 -0
  26. data/lib/{records → records5}/char.rb +6 -12
  27. data/lib/{records → records5}/color.rb +1 -1
  28. data/lib/{records → records5}/color_def.rb +8 -8
  29. data/lib/{records → records5}/embell.rb +2 -2
  30. data/lib/{records → records5}/encoding_def.rb +1 -1
  31. data/lib/{records → records5}/eqn_prefs.rb +2 -2
  32. data/lib/{records → records5}/font_def.rb +1 -1
  33. data/lib/{records → records5}/font_style_def.rb +1 -1
  34. data/lib/{records → records5}/future.rb +1 -1
  35. data/lib/{records → records5}/line.rb +3 -3
  36. data/lib/{records → records5}/matrix.rb +11 -3
  37. data/lib/records5/mtef.rb +129 -0
  38. data/lib/{records → records5}/pile.rb +2 -2
  39. data/lib/{records → records5}/size.rb +9 -7
  40. data/lib/records5/snapshot.rb +19 -0
  41. data/lib/{records → records5}/tmpl.rb +2 -2
  42. data/spec/fixtures/expected/mathtype3/ceil.xml +38 -0
  43. data/spec/fixtures/expected/mathtype3/fence.xml +77 -0
  44. data/spec/fixtures/expected/mathtype3/floor.xml +38 -0
  45. data/spec/fixtures/expected/mathtype3/frac.xml +136 -0
  46. data/spec/fixtures/expected/mathtype3/large_nudge.xml +135 -0
  47. data/spec/fixtures/expected/mathtype3/lim_embell.xml +247 -0
  48. data/spec/fixtures/expected/mathtype3/matrix_2x1.xml +500 -0
  49. data/spec/fixtures/expected/mathtype3/pile.xml +188 -0
  50. data/spec/fixtures/expected/mathtype3/sigma_subsup.xml +46 -0
  51. data/spec/fixtures/expected/mathtype3/small_nudge.xml +90 -0
  52. data/spec/fixtures/expected/mathtype3/sqrt.xml +132 -0
  53. data/spec/fixtures/expected/{299.xml → mathtype5/299.xml} +30 -15
  54. data/spec/fixtures/expected/{arrows.xml → mathtype5/arrows.xml} +30 -15
  55. data/spec/fixtures/expected/{embedded.xml → mathtype5/embedded.xml} +29 -14
  56. data/spec/fixtures/expected/{embellishments.xml → mathtype5/embellishments.xml} +30 -15
  57. data/spec/fixtures/expected/{equation1.xml → mathtype5/equation1.xml} +30 -15
  58. data/spec/fixtures/expected/{equation10.xml → mathtype5/equation10.xml} +30 -15
  59. data/spec/fixtures/expected/{equation11.xml → mathtype5/equation11.xml} +30 -15
  60. data/spec/fixtures/expected/{equation12.xml → mathtype5/equation12.xml} +30 -15
  61. data/spec/fixtures/expected/{equation13.xml → mathtype5/equation13.xml} +30 -15
  62. data/spec/fixtures/expected/{equation2.xml → mathtype5/equation2.xml} +30 -15
  63. data/spec/fixtures/expected/{equation3.xml → mathtype5/equation3.xml} +30 -15
  64. data/spec/fixtures/expected/{equation4.xml → mathtype5/equation4.xml} +30 -15
  65. data/spec/fixtures/expected/{equation5.xml → mathtype5/equation5.xml} +30 -15
  66. data/spec/fixtures/expected/{equation6.xml → mathtype5/equation6.xml} +30 -15
  67. data/spec/fixtures/expected/{equation7.xml → mathtype5/equation7.xml} +30 -15
  68. data/spec/fixtures/expected/{equation8.xml → mathtype5/equation8.xml} +30 -15
  69. data/spec/fixtures/expected/{equation9.xml → mathtype5/equation9.xml} +30 -15
  70. data/spec/fixtures/expected/{fences.xml → mathtype5/fences.xml} +30 -15
  71. data/spec/fixtures/expected/{integrals.xml → mathtype5/integrals.xml} +30 -15
  72. data/spec/fixtures/expected/mathtype5/matrix-border.xml +365 -0
  73. data/spec/fixtures/expected/mathtype5/matrix.xml +382 -0
  74. data/spec/fixtures/expected/{sizes.xml → mathtype5/sizes.xml} +30 -15
  75. data/spec/fixtures/input/mathtype3/ceil.bin +0 -0
  76. data/spec/fixtures/input/mathtype3/fence.bin +0 -0
  77. data/spec/fixtures/input/mathtype3/floor.bin +0 -0
  78. data/spec/fixtures/input/mathtype3/frac.bin +0 -0
  79. data/spec/fixtures/input/mathtype3/large_nudge.bin +0 -0
  80. data/spec/fixtures/input/mathtype3/lim_embell.bin +0 -0
  81. data/spec/fixtures/input/mathtype3/matrix_2x1.bin +0 -0
  82. data/spec/fixtures/input/mathtype3/pile.bin +0 -0
  83. data/spec/fixtures/input/mathtype3/sigma_subsup.bin +0 -0
  84. data/spec/fixtures/input/mathtype3/small_nudge.bin +0 -0
  85. data/spec/fixtures/input/mathtype3/sqrt.bin +0 -0
  86. data/spec/fixtures/input/{299.bin → mathtype5/299.bin} +0 -0
  87. data/spec/fixtures/input/{arrows.bin → mathtype5/arrows.bin} +0 -0
  88. data/spec/fixtures/input/{embedded.bin → mathtype5/embedded.bin} +0 -0
  89. data/spec/fixtures/input/{embellishments.bin → mathtype5/embellishments.bin} +0 -0
  90. data/spec/fixtures/input/{equation1.bin → mathtype5/equation1.bin} +0 -0
  91. data/spec/fixtures/input/{equation10.bin → mathtype5/equation10.bin} +0 -0
  92. data/spec/fixtures/input/{equation11.bin → mathtype5/equation11.bin} +0 -0
  93. data/spec/fixtures/input/{equation12.bin → mathtype5/equation12.bin} +0 -0
  94. data/spec/fixtures/input/{equation13.bin → mathtype5/equation13.bin} +0 -0
  95. data/spec/fixtures/input/{equation2.bin → mathtype5/equation2.bin} +0 -0
  96. data/spec/fixtures/input/{equation3.bin → mathtype5/equation3.bin} +0 -0
  97. data/spec/fixtures/input/{equation4.bin → mathtype5/equation4.bin} +0 -0
  98. data/spec/fixtures/input/{equation5.bin → mathtype5/equation5.bin} +0 -0
  99. data/spec/fixtures/input/{equation6.bin → mathtype5/equation6.bin} +0 -0
  100. data/spec/fixtures/input/{equation7.bin → mathtype5/equation7.bin} +0 -0
  101. data/spec/fixtures/input/{equation8.bin → mathtype5/equation8.bin} +0 -0
  102. data/spec/fixtures/input/{equation9.bin → mathtype5/equation9.bin} +0 -0
  103. data/spec/fixtures/input/{fences.bin → mathtype5/fences.bin} +0 -0
  104. data/spec/fixtures/input/{integrals.bin → mathtype5/integrals.bin} +0 -0
  105. data/spec/fixtures/input/mathtype5/matrix-border.bin +0 -0
  106. data/spec/fixtures/input/mathtype5/matrix.bin +0 -0
  107. data/spec/fixtures/input/{sizes.bin → mathtype5/sizes.bin} +0 -0
  108. data/spec/mathtype_spec.rb +11 -9
  109. data/test-mathtype.rb +2 -0
  110. metadata +168 -97
@@ -187,7 +187,7 @@ require_relative "snapshot"
187
187
  # 0x0008 tvBX_TOP top side is present
188
188
  # 0x0010 tvBX_BOTTOM bottom side is present
189
189
 
190
- module Mathtype
190
+ module Mathtype5
191
191
  class RecordTmpl < BinData::Record
192
192
  include Snapshot
193
193
  EXPOSED_IN_SNAPSHOT = %i(selector variation template_specific_options nudge
@@ -412,7 +412,7 @@ module Mathtype
412
412
 
413
413
  int8 :options
414
414
 
415
- nudge :nudge, onlyif: lambda { options & OPTIONS["mtefOPT_NUDGE"] > 0 }
415
+ record_nudge :nudge, onlyif: lambda { options & OPTIONS["mtefOPT_NUDGE"] > 0 }
416
416
 
417
417
  int8 :_selector
418
418
 
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0"?>
2
+ <root>
3
+ <mtef>
4
+ <mtef_version>3</mtef_version>
5
+ <platform>1</platform>
6
+ <product>1</product>
7
+ <product_version>3</product_version>
8
+ <product_subversion>10</product_subversion>
9
+ <full/>
10
+ <slot>
11
+ <options>0</options>
12
+ <tmpl>
13
+ <options>0</options>
14
+ <selector>tmCEILING</selector>
15
+ <variation>tvFENCE_L</variation>
16
+ <variation>tvFENCE_R</variation>
17
+ <template_specific_options>0</template_specific_options>
18
+ <slot>
19
+ <options>0</options>
20
+ <end/>
21
+ </slot>
22
+ <char>
23
+ <options>0</options>
24
+ <typeface>22</typeface>
25
+ <mt_code_value>0xF8EE</mt_code_value>
26
+ </char>
27
+ <char>
28
+ <options>0</options>
29
+ <typeface>22</typeface>
30
+ <mt_code_value>0xF8F9</mt_code_value>
31
+ </char>
32
+ <end/>
33
+ </tmpl>
34
+ <end/>
35
+ </slot>
36
+ <end/>
37
+ </mtef>
38
+ </root>
@@ -0,0 +1,77 @@
1
+ <?xml version="1.0"?>
2
+ <root>
3
+ <mtef>
4
+ <mtef_version>3</mtef_version>
5
+ <platform>1</platform>
6
+ <product>1</product>
7
+ <product_version>3</product_version>
8
+ <product_subversion>10</product_subversion>
9
+ <full/>
10
+ <slot>
11
+ <options>0</options>
12
+ <char>
13
+ <options>1</options>
14
+ <typeface>3</typeface>
15
+ <mt_code_value>0x0044</mt_code_value>
16
+ </char>
17
+ <char>
18
+ <options>0</options>
19
+ <typeface>6</typeface>
20
+ <mt_code_value>0x003D</mt_code_value>
21
+ </char>
22
+ <tmpl>
23
+ <options>0</options>
24
+ <selector>tmBAR</selector>
25
+ <variation>tvFENCE_L</variation>
26
+ <variation>tvFENCE_R</variation>
27
+ <template_specific_options>0</template_specific_options>
28
+ <slot>
29
+ <options>0</options>
30
+ <char>
31
+ <options>1</options>
32
+ <typeface>3</typeface>
33
+ <mt_code_value>0x004B</mt_code_value>
34
+ </char>
35
+ <sub2/>
36
+ <char>
37
+ <options>0</options>
38
+ <typeface>8</typeface>
39
+ <mt_code_value>0x0031</mt_code_value>
40
+ </char>
41
+ <full/>
42
+ <char>
43
+ <options>0</options>
44
+ <typeface>6</typeface>
45
+ <mt_code_value>0x2212</mt_code_value>
46
+ </char>
47
+ <char>
48
+ <options>1</options>
49
+ <typeface>3</typeface>
50
+ <mt_code_value>0x004B</mt_code_value>
51
+ </char>
52
+ <sub2/>
53
+ <char>
54
+ <options>0</options>
55
+ <typeface>8</typeface>
56
+ <mt_code_value>0x0032</mt_code_value>
57
+ </char>
58
+ <end/>
59
+ </slot>
60
+ <full/>
61
+ <char>
62
+ <options>0</options>
63
+ <typeface>22</typeface>
64
+ <mt_code_value>0xEC07</mt_code_value>
65
+ </char>
66
+ <char>
67
+ <options>0</options>
68
+ <typeface>22</typeface>
69
+ <mt_code_value>0xEC08</mt_code_value>
70
+ </char>
71
+ <end/>
72
+ </tmpl>
73
+ <end/>
74
+ </slot>
75
+ <end/>
76
+ </mtef>
77
+ </root>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0"?>
2
+ <root>
3
+ <mtef>
4
+ <mtef_version>3</mtef_version>
5
+ <platform>1</platform>
6
+ <product>1</product>
7
+ <product_version>3</product_version>
8
+ <product_subversion>10</product_subversion>
9
+ <full/>
10
+ <slot>
11
+ <options>0</options>
12
+ <tmpl>
13
+ <options>0</options>
14
+ <selector>tmFLOOR</selector>
15
+ <variation>tvFENCE_L</variation>
16
+ <variation>tvFENCE_R</variation>
17
+ <template_specific_options>0</template_specific_options>
18
+ <slot>
19
+ <options>0</options>
20
+ <end/>
21
+ </slot>
22
+ <char>
23
+ <options>0</options>
24
+ <typeface>22</typeface>
25
+ <mt_code_value>0xF8F0</mt_code_value>
26
+ </char>
27
+ <char>
28
+ <options>0</options>
29
+ <typeface>22</typeface>
30
+ <mt_code_value>0xF8FB</mt_code_value>
31
+ </char>
32
+ <end/>
33
+ </tmpl>
34
+ <end/>
35
+ </slot>
36
+ <end/>
37
+ </mtef>
38
+ </root>
@@ -0,0 +1,136 @@
1
+ <?xml version="1.0"?>
2
+ <root>
3
+ <mtef>
4
+ <mtef_version>3</mtef_version>
5
+ <platform>1</platform>
6
+ <product>1</product>
7
+ <product_version>3</product_version>
8
+ <product_subversion>10</product_subversion>
9
+ <full/>
10
+ <slot>
11
+ <options>0</options>
12
+ <tmpl>
13
+ <options>0</options>
14
+ <selector>tmFRACT</selector>
15
+ <variation>tvFR_FULL</variation>
16
+ <template_specific_options>0</template_specific_options>
17
+ <slot>
18
+ <options>0</options>
19
+ <char>
20
+ <options>0</options>
21
+ <typeface>8</typeface>
22
+ <mt_code_value>0x0032</mt_code_value>
23
+ </char>
24
+ <char>
25
+ <options>0</options>
26
+ <typeface>24</typeface>
27
+ <mt_code_value>0xEB04</mt_code_value>
28
+ </char>
29
+ <char>
30
+ <options>0</options>
31
+ <typeface>1</typeface>
32
+ <mt_code_value>0x0064</mt_code_value>
33
+ </char>
34
+ <end/>
35
+ </slot>
36
+ <slot>
37
+ <options>0</options>
38
+ <char>
39
+ <options>0</options>
40
+ <typeface>8</typeface>
41
+ <mt_code_value>0x0032</mt_code_value>
42
+ </char>
43
+ <char>
44
+ <options>0</options>
45
+ <typeface>8</typeface>
46
+ <mt_code_value>0x0030</mt_code_value>
47
+ </char>
48
+ <char>
49
+ <options>0</options>
50
+ <typeface>8</typeface>
51
+ <mt_code_value>0x0034</mt_code_value>
52
+ </char>
53
+ <char>
54
+ <options>0</options>
55
+ <typeface>24</typeface>
56
+ <mt_code_value>0xEB04</mt_code_value>
57
+ </char>
58
+ <char>
59
+ <options>0</options>
60
+ <typeface>1</typeface>
61
+ <mt_code_value>0x0064</mt_code_value>
62
+ </char>
63
+ <end/>
64
+ </slot>
65
+ <end/>
66
+ </tmpl>
67
+ <char>
68
+ <options>0</options>
69
+ <typeface>6</typeface>
70
+ <mt_code_value>0x22C5</mt_code_value>
71
+ </char>
72
+ <char>
73
+ <options>0</options>
74
+ <typeface>8</typeface>
75
+ <mt_code_value>0x0031</mt_code_value>
76
+ </char>
77
+ <char>
78
+ <options>0</options>
79
+ <typeface>8</typeface>
80
+ <mt_code_value>0x0030</mt_code_value>
81
+ </char>
82
+ <char>
83
+ <options>0</options>
84
+ <typeface>8</typeface>
85
+ <mt_code_value>0x0030</mt_code_value>
86
+ </char>
87
+ <char>
88
+ <options>0</options>
89
+ <typeface>24</typeface>
90
+ <mt_code_value>0xEB04</mt_code_value>
91
+ </char>
92
+ <char>
93
+ <options>0</options>
94
+ <typeface>2</typeface>
95
+ <mt_code_value>0x0025</mt_code_value>
96
+ </char>
97
+ <char>
98
+ <options>0</options>
99
+ <typeface>6</typeface>
100
+ <mt_code_value>0x003D</mt_code_value>
101
+ </char>
102
+ <char>
103
+ <options>0</options>
104
+ <typeface>8</typeface>
105
+ <mt_code_value>0x0030</mt_code_value>
106
+ </char>
107
+ <char>
108
+ <options>0</options>
109
+ <typeface>2</typeface>
110
+ <mt_code_value>0x002C</mt_code_value>
111
+ </char>
112
+ <char>
113
+ <options>0</options>
114
+ <typeface>8</typeface>
115
+ <mt_code_value>0x0039</mt_code_value>
116
+ </char>
117
+ <char>
118
+ <options>0</options>
119
+ <typeface>8</typeface>
120
+ <mt_code_value>0x0038</mt_code_value>
121
+ </char>
122
+ <char>
123
+ <options>0</options>
124
+ <typeface>24</typeface>
125
+ <mt_code_value>0xEB04</mt_code_value>
126
+ </char>
127
+ <char>
128
+ <options>0</options>
129
+ <typeface>2</typeface>
130
+ <mt_code_value>0x0025</mt_code_value>
131
+ </char>
132
+ <end/>
133
+ </slot>
134
+ <end/>
135
+ </mtef>
136
+ </root>
@@ -0,0 +1,135 @@
1
+ <?xml version="1.0"?>
2
+ <root>
3
+ <mtef>
4
+ <mtef_version>3</mtef_version>
5
+ <platform>1</platform>
6
+ <product>1</product>
7
+ <product_version>3</product_version>
8
+ <product_subversion>10</product_subversion>
9
+ <full/>
10
+ <slot>
11
+ <options>0</options>
12
+ <tmpl>
13
+ <options>0</options>
14
+ <selector>tmFRACT</selector>
15
+ <variation>tvFR_FULL</variation>
16
+ <template_specific_options>0</template_specific_options>
17
+ <slot>
18
+ <options>0</options>
19
+ <char>
20
+ <options>0</options>
21
+ <typeface>4</typeface>
22
+ <mt_code_value>0x03B1</mt_code_value>
23
+ </char>
24
+ <font>
25
+ <options>0</options>
26
+ <name>Symbol</name>
27
+ <typeface>131</typeface>
28
+ <style>0</style>
29
+ </font>
30
+ <char>
31
+ <options>0</options>
32
+ <typeface>253</typeface>
33
+ <mt_code_value>0x03C0</mt_code_value>
34
+ </char>
35
+ <tmpl>
36
+ <options>0</options>
37
+ <selector>tmPAREN</selector>
38
+ <variation>tvFENCE_L</variation>
39
+ <variation>tvFENCE_R</variation>
40
+ <template_specific_options>0</template_specific_options>
41
+ <slot>
42
+ <options>0</options>
43
+ <char>
44
+ <options>1</options>
45
+ <typeface>3</typeface>
46
+ <mt_code_value>0x0072</mt_code_value>
47
+ </char>
48
+ <char>
49
+ <options>0</options>
50
+ <typeface>6</typeface>
51
+ <mt_code_value>0x002B</mt_code_value>
52
+ </char>
53
+ <char>
54
+ <options>1</options>
55
+ <typeface>3</typeface>
56
+ <mt_code_value>0x0062</mt_code_value>
57
+ </char>
58
+ <end/>
59
+ </slot>
60
+ <char>
61
+ <options>0</options>
62
+ <typeface>22</typeface>
63
+ <mt_code_value>0x0028</mt_code_value>
64
+ </char>
65
+ <char>
66
+ <options>0</options>
67
+ <typeface>22</typeface>
68
+ <mt_code_value>0x0029</mt_code_value>
69
+ </char>
70
+ <end/>
71
+ </tmpl>
72
+ <end/>
73
+ </slot>
74
+ <slot>
75
+ <options>0</options>
76
+ <char>
77
+ <options>0</options>
78
+ <typeface>8</typeface>
79
+ <mt_code_value>0x0031</mt_code_value>
80
+ </char>
81
+ <char>
82
+ <options>0</options>
83
+ <typeface>8</typeface>
84
+ <mt_code_value>0x0038</mt_code_value>
85
+ </char>
86
+ <char>
87
+ <options>0</options>
88
+ <typeface>8</typeface>
89
+ <mt_code_value>0x0030</mt_code_value>
90
+ </char>
91
+ <end/>
92
+ </slot>
93
+ <end/>
94
+ </tmpl>
95
+ <char>
96
+ <options>8</options>
97
+ <nudge>
98
+ <dx>-176</dx>
99
+ <dy>-256</dy>
100
+ </nudge>
101
+ <typeface>6</typeface>
102
+ <mt_code_value>0x002B</mt_code_value>
103
+ </char>
104
+ <char>
105
+ <options>9</options>
106
+ <nudge>
107
+ <dx>160</dx>
108
+ <dy>0</dy>
109
+ </nudge>
110
+ <typeface>3</typeface>
111
+ <mt_code_value>0x0065</mt_code_value>
112
+ </char>
113
+ <char>
114
+ <options>8</options>
115
+ <nudge>
116
+ <dx>160</dx>
117
+ <dy>0</dy>
118
+ </nudge>
119
+ <typeface>6</typeface>
120
+ <mt_code_value>0x002B</mt_code_value>
121
+ </char>
122
+ <char>
123
+ <options>9</options>
124
+ <nudge>
125
+ <dx>160</dx>
126
+ <dy>0</dy>
127
+ </nudge>
128
+ <typeface>3</typeface>
129
+ <mt_code_value>0x0066</mt_code_value>
130
+ </char>
131
+ <end/>
132
+ </slot>
133
+ <end/>
134
+ </mtef>
135
+ </root>
@@ -0,0 +1,247 @@
1
+ <?xml version="1.0"?>
2
+ <root>
3
+ <mtef>
4
+ <mtef_version>3</mtef_version>
5
+ <platform>1</platform>
6
+ <product>1</product>
7
+ <product_version>3</product_version>
8
+ <product_subversion>1</product_subversion>
9
+ <full/>
10
+ <slot>
11
+ <options>0</options>
12
+ <char>
13
+ <options>1</options>
14
+ <typeface>3</typeface>
15
+ <mt_code_value>0x0041</mt_code_value>
16
+ </char>
17
+ <char>
18
+ <options>0</options>
19
+ <typeface>6</typeface>
20
+ <mt_code_value>0x003D</mt_code_value>
21
+ </char>
22
+ <tmpl>
23
+ <options>0</options>
24
+ <selector>tmLIM</selector>
25
+ <variation>tvBO_LOWER</variation>
26
+ <template_specific_options>0</template_specific_options>
27
+ <slot>
28
+ <options>0</options>
29
+ <char>
30
+ <options>1</options>
31
+ <typeface>2</typeface>
32
+ <mt_code_value>0x006C</mt_code_value>
33
+ </char>
34
+ <char>
35
+ <options>1</options>
36
+ <typeface>2</typeface>
37
+ <mt_code_value>0x0069</mt_code_value>
38
+ </char>
39
+ <char>
40
+ <options>1</options>
41
+ <typeface>2</typeface>
42
+ <mt_code_value>0x006D</mt_code_value>
43
+ </char>
44
+ <end/>
45
+ </slot>
46
+ <sub/>
47
+ <pile>
48
+ <options>0</options>
49
+ <halign>center</halign>
50
+ <valign>center_baseline</valign>
51
+ <slot>
52
+ <options>0</options>
53
+ <char>
54
+ <options>1</options>
55
+ <typeface>3</typeface>
56
+ <mt_code_value>0x006E</mt_code_value>
57
+ </char>
58
+ <char>
59
+ <options>0</options>
60
+ <typeface>6</typeface>
61
+ <mt_code_value>0x2192</mt_code_value>
62
+ </char>
63
+ <char>
64
+ <options>0</options>
65
+ <typeface>6</typeface>
66
+ <mt_code_value>0x221E</mt_code_value>
67
+ </char>
68
+ <end/>
69
+ </slot>
70
+ <slot>
71
+ <options>0</options>
72
+ <char>
73
+ <options>0</options>
74
+ <typeface>5</typeface>
75
+ <mt_code_value>0x0394</mt_code_value>
76
+ </char>
77
+ <char>
78
+ <options>1</options>
79
+ <typeface>3</typeface>
80
+ <mt_code_value>0x0078</mt_code_value>
81
+ </char>
82
+ <tmpl>
83
+ <options>0</options>
84
+ <selector>tmSUB</selector>
85
+ <template_specific_options>0</template_specific_options>
86
+ <sub2/>
87
+ <slot>
88
+ <options>0</options>
89
+ <char>
90
+ <options>1</options>
91
+ <typeface>3</typeface>
92
+ <mt_code_value>0x006B</mt_code_value>
93
+ </char>
94
+ <end/>
95
+ </slot>
96
+ <slot>
97
+ <options>1</options>
98
+ </slot>
99
+ <end/>
100
+ </tmpl>
101
+ <sub/>
102
+ <char>
103
+ <options>0</options>
104
+ <typeface>6</typeface>
105
+ <mt_code_value>0x2192</mt_code_value>
106
+ </char>
107
+ <char>
108
+ <options>0</options>
109
+ <typeface>8</typeface>
110
+ <mt_code_value>0x0030</mt_code_value>
111
+ </char>
112
+ <end/>
113
+ </slot>
114
+ <end/>
115
+ </pile>
116
+ <slot>
117
+ <options>1</options>
118
+ </slot>
119
+ <end/>
120
+ </tmpl>
121
+ <full/>
122
+ <tmpl>
123
+ <options>0</options>
124
+ <selector>tmSUM</selector>
125
+ <variation>tvBO_LOWER</variation>
126
+ <variation>tvBO_UPPER</variation>
127
+ <variation>tvBO_SUM</variation>
128
+ <template_specific_options>0</template_specific_options>
129
+ <slot>
130
+ <options>0</options>
131
+ <char>
132
+ <options>1</options>
133
+ <typeface>3</typeface>
134
+ <mt_code_value>0x0066</mt_code_value>
135
+ </char>
136
+ <char>
137
+ <options>0</options>
138
+ <typeface>2</typeface>
139
+ <mt_code_value>0x0028</mt_code_value>
140
+ </char>
141
+ <char>
142
+ <options>3</options>
143
+ <typeface>3</typeface>
144
+ <mt_code_value>0x0078</mt_code_value>
145
+ <embell>
146
+ <options>0</options>
147
+ <embell>embTILDE</embell>
148
+ </embell>
149
+ <end/>
150
+ </char>
151
+ <tmpl>
152
+ <options>0</options>
153
+ <selector>tmSUB</selector>
154
+ <template_specific_options>0</template_specific_options>
155
+ <sub/>
156
+ <slot>
157
+ <options>0</options>
158
+ <char>
159
+ <options>1</options>
160
+ <typeface>3</typeface>
161
+ <mt_code_value>0x006B</mt_code_value>
162
+ </char>
163
+ <end/>
164
+ </slot>
165
+ <slot>
166
+ <options>1</options>
167
+ </slot>
168
+ <end/>
169
+ </tmpl>
170
+ <full/>
171
+ <char>
172
+ <options>0</options>
173
+ <typeface>2</typeface>
174
+ <mt_code_value>0x0029</mt_code_value>
175
+ </char>
176
+ <char>
177
+ <options>0</options>
178
+ <typeface>5</typeface>
179
+ <mt_code_value>0x0394</mt_code_value>
180
+ </char>
181
+ <char>
182
+ <options>1</options>
183
+ <typeface>3</typeface>
184
+ <mt_code_value>0x0078</mt_code_value>
185
+ </char>
186
+ <tmpl>
187
+ <options>0</options>
188
+ <selector>tmSUB</selector>
189
+ <template_specific_options>0</template_specific_options>
190
+ <sub/>
191
+ <slot>
192
+ <options>0</options>
193
+ <char>
194
+ <options>1</options>
195
+ <typeface>3</typeface>
196
+ <mt_code_value>0x006B</mt_code_value>
197
+ </char>
198
+ <end/>
199
+ </slot>
200
+ <slot>
201
+ <options>1</options>
202
+ </slot>
203
+ <end/>
204
+ </tmpl>
205
+ <end/>
206
+ </slot>
207
+ <slot>
208
+ <options>0</options>
209
+ <char>
210
+ <options>1</options>
211
+ <typeface>3</typeface>
212
+ <mt_code_value>0x006B</mt_code_value>
213
+ </char>
214
+ <char>
215
+ <options>0</options>
216
+ <typeface>6</typeface>
217
+ <mt_code_value>0x003D</mt_code_value>
218
+ </char>
219
+ <char>
220
+ <options>0</options>
221
+ <typeface>8</typeface>
222
+ <mt_code_value>0x0031</mt_code_value>
223
+ </char>
224
+ <end/>
225
+ </slot>
226
+ <slot>
227
+ <options>0</options>
228
+ <char>
229
+ <options>1</options>
230
+ <typeface>3</typeface>
231
+ <mt_code_value>0x006E</mt_code_value>
232
+ </char>
233
+ <end/>
234
+ </slot>
235
+ <sym/>
236
+ <char>
237
+ <options>0</options>
238
+ <typeface>6</typeface>
239
+ <mt_code_value>0x2211</mt_code_value>
240
+ </char>
241
+ <end/>
242
+ </tmpl>
243
+ <end/>
244
+ </slot>
245
+ <end/>
246
+ </mtef>
247
+ </root>