$ find -L -name "tex_to_html.zip" -exec unzip -l {} \; \
| grep files \
| awk -F: '{ split($0,a," "); print(a[2]); }' \
> all_files_in_zips.log
$ ALLFILES=$(paste -sd+ all_files_in_zips.log | bc)
$ ALLZIPS=$(wc -l all_files_in_zips.log|awk -F' ' '{print $1}')
We can't make this file beautiful and searchable because it's too large.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name[child1/grandchild_count;...],frequency | |
msub[mi; mi],347136608 | |
msub[mi; mn],235654239 | |
mover[mi; mo],121376075 | |
msub[mi; mrow/3],96607010 | |
msup[mi; mo],81916551 | |
msup[mi; mn],80574746 | |
msup[mi; mi],57340512 | |
msup[mi; mrow/3],40204587 | |
msup[mi; mrow/2],22792247 |
- percent
- range -
3-8 miles
- minus
- divide -
1/1,000
- is this different from fraction? "one thousandth" - equals
- pH
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Math mode="inline" tex="x_{i+j}" text="x _ (i + j)"> | |
<XMath> | |
<XMApp> | |
<XMTok role="SUBSCRIPTOP" scriptpos="post1"/> | |
<XMTok font="italic" role="UNKNOWN">x</XMTok> | |
<XMApp> | |
<XMTok fontsize="70%" meaning="plus" role="ADDOP">+</XMTok> | |
<XMTok font="italic" fontsize="70%" role="UNKNOWN">i</XMTok> | |
<XMTok font="italic" fontsize="70%" role="UNKNOWN">j</XMTok> | |
</XMApp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: Perl -*- | |
use strict; | |
use warnings; | |
use LaTeXML::Package; | |
DefEnvironment("{namedwrap}{}", "<ltx:inline-block class='#1'>#body</ltx:inline-block>"); | |
DefEnvironment("{namedblock}{}", "<ltx:block class='#1'>#body</ltx:block>"); | |
1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- CPERL -*- | |
# /=====================================================================\ # | |
# | breqn.sty | # | |
# | Simple temporary patch for LaTeXML | # | |
# |=====================================================================| # | |
package LaTeXML::Package::Pool; | |
use strict; | |
use warnings; | |
use LaTeXML::Package; |
NewerOlder