mathtype 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mathtype/version.rb +1 -1
- data/lib/records/matrix.rb +32 -10
- data/lib/records/mtef.rb +16 -0
- data/lib/records/pile.rb +15 -2
- data/lib/records/tmpl.rb +0 -1
- data/spec/fixtures/expected/arrows.xml +1406 -0
- data/spec/fixtures/expected/equation3.xml +9 -9
- data/spec/fixtures/input/arrows.bin +0 -0
- metadata +6 -2
@@ -620,9 +620,9 @@
|
|
620
620
|
<options>0</options>
|
621
621
|
<matrix>
|
622
622
|
<options>0</options>
|
623
|
-
<valign>
|
624
|
-
<h_just>
|
625
|
-
<v_just>
|
623
|
+
<valign>center_baseline</valign>
|
624
|
+
<h_just>left</h_just>
|
625
|
+
<v_just>center_baseline</v_just>
|
626
626
|
<rows>3</rows>
|
627
627
|
<cols>3</cols>
|
628
628
|
<row_parts>0</row_parts>
|
@@ -844,9 +844,9 @@
|
|
844
844
|
<options>0</options>
|
845
845
|
<matrix>
|
846
846
|
<options>0</options>
|
847
|
-
<valign>
|
848
|
-
<h_just>
|
849
|
-
<v_just>
|
847
|
+
<valign>center_baseline</valign>
|
848
|
+
<h_just>left</h_just>
|
849
|
+
<v_just>center_baseline</v_just>
|
850
850
|
<rows>3</rows>
|
851
851
|
<cols>3</cols>
|
852
852
|
<row_parts>0</row_parts>
|
@@ -1197,9 +1197,9 @@
|
|
1197
1197
|
<options>0</options>
|
1198
1198
|
<matrix>
|
1199
1199
|
<options>0</options>
|
1200
|
-
<valign>
|
1201
|
-
<h_just>
|
1202
|
-
<v_just>
|
1200
|
+
<valign>center_baseline</valign>
|
1201
|
+
<h_just>left</h_just>
|
1202
|
+
<v_just>center_baseline</v_just>
|
1203
1203
|
<rows>3</rows>
|
1204
1204
|
<cols>3</cols>
|
1205
1205
|
<row_parts>0</row_parts>
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mathtype
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jure Triglav
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -146,6 +146,7 @@ files:
|
|
146
146
|
- lib/records/tmpl.rb
|
147
147
|
- lib/records/typesizes.rb
|
148
148
|
- mathtype.gemspec
|
149
|
+
- spec/fixtures/expected/arrows.xml
|
149
150
|
- spec/fixtures/expected/embellishments.xml
|
150
151
|
- spec/fixtures/expected/equation1.xml
|
151
152
|
- spec/fixtures/expected/equation10.xml
|
@@ -161,6 +162,7 @@ files:
|
|
161
162
|
- spec/fixtures/expected/equation8.xml
|
162
163
|
- spec/fixtures/expected/equation9.xml
|
163
164
|
- spec/fixtures/expected/sizes.xml
|
165
|
+
- spec/fixtures/input/arrows.bin
|
164
166
|
- spec/fixtures/input/embellishments.bin
|
165
167
|
- spec/fixtures/input/equation1.bin
|
166
168
|
- spec/fixtures/input/equation10.bin
|
@@ -203,6 +205,7 @@ signing_key:
|
|
203
205
|
specification_version: 4
|
204
206
|
summary: A Ruby gem for reading MathType binaries and converting them to an XML form.
|
205
207
|
test_files:
|
208
|
+
- spec/fixtures/expected/arrows.xml
|
206
209
|
- spec/fixtures/expected/embellishments.xml
|
207
210
|
- spec/fixtures/expected/equation1.xml
|
208
211
|
- spec/fixtures/expected/equation10.xml
|
@@ -218,6 +221,7 @@ test_files:
|
|
218
221
|
- spec/fixtures/expected/equation8.xml
|
219
222
|
- spec/fixtures/expected/equation9.xml
|
220
223
|
- spec/fixtures/expected/sizes.xml
|
224
|
+
- spec/fixtures/input/arrows.bin
|
221
225
|
- spec/fixtures/input/embellishments.bin
|
222
226
|
- spec/fixtures/input/equation1.bin
|
223
227
|
- spec/fixtures/input/equation10.bin
|