├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── OMML-BUGS ├── README.md ├── Setup.lhs ├── cabal.project ├── changelog.md ├── default.nix ├── extra └── texmath.hs ├── flake.lock ├── flake.nix ├── lib ├── mmldict │ ├── Makefile │ ├── generateMMLDict.hs │ └── operatorDictionary.xsl ├── totexmath │ ├── Makefile │ ├── unicodetotex.hs │ └── unimathsymbols.txt └── tounicode │ ├── Makefile │ └── mkUnicodeTable.hs ├── man ├── Makefile ├── man1 │ └── texmath.1 └── texmath.1.md ├── math-template.docx ├── mathml2omml ├── omml2docx ├── server ├── Main.hs └── texmath.html ├── src └── Text │ ├── TeXMath.hs │ └── TeXMath │ ├── Readers │ ├── MathML.hs │ ├── MathML │ │ ├── EntityMap.hs │ │ └── MMLDict.hs │ ├── OMML.hs │ ├── TeX.hs │ └── TeX │ │ ├── Commands.hs │ │ └── Macros.hs │ ├── Shared.hs │ ├── TeX.hs │ ├── Types.hs │ ├── Unicode │ ├── Fonts.hs │ ├── ToTeX.hs │ └── ToUnicode.hs │ └── Writers │ ├── Eqn.hs │ ├── MathML.hs │ ├── OMML.hs │ ├── Pandoc.hs │ ├── TeX.hs │ └── Typst.hs ├── stack.yaml ├── test ├── reader │ ├── mml │ │ ├── 00000_C0_Controls_and_Basic_Latin.test │ │ ├── 00080_C1_Controls_and_Latin-1_Supplement.test │ │ ├── 00100_Latin_Extended-A.test │ │ ├── 00180_Latin_Extended-B.test │ │ ├── 00250_IPA_Extensions.test │ │ ├── 002B0_Spacing_Modifier_Letters.test │ │ ├── 00300_Combining_Diacritical_Marks.test │ │ ├── 00370_Greek_and_Coptic.test │ │ ├── 00400_Cyrillic.test │ │ ├── 01E00_Latin_Extended_Additional.test │ │ ├── 01F00_Greek_Extended.test │ │ ├── 02000_General_Punctuation.test │ │ ├── 02070_Superscripts_and_Subscripts.test │ │ ├── 020A0_Currency_Symbols.test │ │ ├── 020D0_Combining_Diacritical_Marks_for_Symbols.test │ │ ├── 02100_Letterlike_Symbols.test │ │ ├── 02150_Number_Forms.test │ │ ├── 02190_Arrows.test │ │ ├── 02200_Mathematical_Operators.test │ │ ├── 02300_Miscellaneous_Technical.test │ │ ├── 02400_Control_Pictures.test │ │ ├── 02440_Optical_Character_Recognition.test │ │ ├── 02460_Enclosed_Alphanumerics.test │ │ ├── 02500_Box_Drawing.test │ │ ├── 02580_Block_Elements.test │ │ ├── 025A0_Geometric_Shapes.test │ │ ├── 02600_Miscellaneous_Symbols.test │ │ ├── 02700_Dingbats.test │ │ ├── 027C0_Miscellaneous_Mathematical_Symbols-A.test │ │ ├── 027F0_Supplemental_Arrows-A.test │ │ ├── 02900_Supplemental_Arrows-B.test │ │ ├── 02980_Miscellaneous_Mathematical_Symbols-B.test │ │ ├── 02A00_Supplemental_Mathematical_Operators.test │ │ ├── 02B00_Miscellaneous_Symbols_and_Arrows.test │ │ ├── 0FB00_Alphabetic_Presentation_Forms.test │ │ ├── 0FB50_Arabic_Presentation_Forms-A.test │ │ ├── 0FE00_Variation_Selectors.test │ │ ├── 0FE10_Vertical_Forms.test │ │ ├── 0FE20_Combining_Half_Marks.test │ │ ├── 0FE30_CJK_Compatibility_Forms.test │ │ ├── 0FE50_Small_Form_Variants.test │ │ ├── 0FE70_Arabic_Presentation_Forms-B.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-script.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_double-struck.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_fraktur.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_italic.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_monospace.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test │ │ ├── 1D400_Mathematical_Alphanumeric_Symbols_script.test │ │ ├── a.test │ │ ├── abs1.test │ │ ├── abs2.test │ │ ├── accents1.test │ │ ├── accents2.test │ │ ├── accents3.test │ │ ├── accents4.test │ │ ├── accents5.test │ │ ├── accents6.test │ │ ├── attribQuote1.test │ │ ├── b.test │ │ ├── badAttribs2.test │ │ ├── badAttribsAction.test │ │ ├── badAttribsGlyph4.test │ │ ├── badAttribsVal3.test │ │ ├── badEntity1.test │ │ ├── badTag1.test │ │ ├── badTagPhantom2.test │ │ ├── c.test │ │ ├── chain1.test │ │ ├── chain2.test │ │ ├── class1.test │ │ ├── class2.test │ │ ├── clipboard1.test │ │ ├── clipboard2.test │ │ ├── complex1.test │ │ ├── complex2.test │ │ ├── complex3.test │ │ ├── complex4.test │ │ ├── coprod1.test │ │ ├── coprod2.test │ │ ├── d.test │ │ ├── digamma.test │ │ ├── digit-bold.test │ │ ├── digit-double-struck.test │ │ ├── digit-monospace.test │ │ ├── digit-sans-serif-bold.test │ │ ├── digit-sans-serif.test │ │ ├── dotless.test │ │ ├── double-struck.test │ │ ├── doubleint1.test │ │ ├── doubleint2.test │ │ ├── e.test │ │ ├── embStretch1.test │ │ ├── emptyContent1.test │ │ ├── f.test │ │ ├── fraktur-bold.test │ │ ├── fraktur.test │ │ ├── g.test │ │ ├── genBvert1.test │ │ ├── greek-bold-italic.test │ │ ├── greek-bold.test │ │ ├── greek-italic.test │ │ ├── greek-sans-serif-bold-italic.test │ │ ├── greek-sans-serif-bold.test │ │ ├── h.test │ │ ├── href1.test │ │ ├── href2.test │ │ ├── href3.test │ │ ├── i.test │ │ ├── id1.test │ │ ├── int1.test │ │ ├── int10.test │ │ ├── int2.test │ │ ├── int3.test │ │ ├── int4.test │ │ ├── int5.test │ │ ├── int6.test │ │ ├── int7.test │ │ ├── int8.test │ │ ├── int9.test │ │ ├── intDispStyle.test │ │ ├── intNested3.test │ │ ├── intSize1.test │ │ ├── intSize2.test │ │ ├── invChars.test │ │ ├── j.test │ │ ├── k.test │ │ ├── l.test │ │ ├── largeop1.test │ │ ├── largeop2.test │ │ ├── largeopPos3.test │ │ ├── latin-bold-italic.test │ │ ├── latin-bold.test │ │ ├── latin-italic.test │ │ ├── latin-sans-serif-bold-italic.test │ │ ├── latin-sans-serif-bold.test │ │ ├── latin-sans-serif-italic.test │ │ ├── latin-sans-serif.test │ │ ├── m.test │ │ ├── m10.test │ │ ├── m100.test │ │ ├── m1000.test │ │ ├── maction-01.test │ │ ├── maction-02.test │ │ ├── maction-03.test │ │ ├── maction-04.test │ │ ├── maction-05.test │ │ ├── maction-06.test │ │ ├── maction-07.test │ │ ├── maction-08.test │ │ ├── mactionBhigh1.test │ │ ├── mactionBstatus1.test │ │ ├── mactionBtoggle1.test │ │ ├── mactionBtooltip1.test │ │ ├── maligngroup1.test │ │ ├── math1.test │ │ ├── math3.test │ │ ├── mathAdisplay1.test │ │ ├── mathAdisplay2.test │ │ ├── mathAmacros1.test │ │ ├── mathAmode1.test │ │ ├── mathBevelledFrac.test │ │ ├── mathDir.test │ │ ├── mathTable1.test │ │ ├── menclose.test │ │ ├── merror-01.test │ │ ├── merror1.test │ │ ├── merrorB3.test │ │ ├── mfenced-01.test │ │ ├── mfenced-02.test │ │ ├── mfenced-03.test │ │ ├── mfenced-04.test │ │ ├── mfenced-05.test │ │ ├── mfenced-06.test │ │ ├── mfenced-07.test │ │ ├── mfenced-08.test │ │ ├── mfenced1.test │ │ ├── mfenced2.test │ │ ├── mfenced3.test │ │ ├── mfenced4.test │ │ ├── mfenced5.test │ │ ├── mfencedAdelims6.test │ │ ├── mfencedAempty.test │ │ ├── mfencedBfences7.test │ │ ├── mfencedBseparators8.test │ │ ├── mfencedSfonts9.test │ │ ├── mfrac-01.test │ │ ├── mfrac-02.test │ │ ├── mfrac-03.test │ │ ├── mfrac-04.test │ │ ├── mfrac-05.test │ │ ├── mfrac-06.test │ │ ├── mfrac-07.test │ │ ├── mfrac-08.test │ │ ├── mfrac-09.test │ │ ├── mfrac-10.test │ │ ├── mfrac-11.test │ │ ├── mfrac-12.test │ │ ├── mfrac1.test │ │ ├── mfrac2.test │ │ ├── mfrac3.test │ │ ├── mfrac4.test │ │ ├── mfrac7.test │ │ ├── mfracAbevelled16.test │ │ ├── mfracAcss8.test │ │ ├── mfracAkeyword9.test │ │ ├── mfracAmultiplier10.test │ │ ├── mfracBalign16.test │ │ ├── mfracBheight17.test │ │ ├── mfracBhoriz11.test │ │ ├── mfracBvert12.test │ │ ├── mfracSfonts13.test │ │ ├── mfracSinheritance14.test │ │ ├── mfracSscriptlevel15.test │ │ ├── mfracZcomp-01.test │ │ ├── mfracZcomp-02.test │ │ ├── mfracZcomp-03.test │ │ ├── mfracZcomp-04.test │ │ ├── mfracZcomp-05.test │ │ ├── mfracZcomp-06.test │ │ ├── mfracZcomp-07.test │ │ ├── mfracZcomp-08.test │ │ ├── mfracZcomp-09.test │ │ ├── mfracZcomp-10.test │ │ ├── mfracZcomp-11.test │ │ ├── mfracZcomp-12.test │ │ ├── mfracZcomp-13.test │ │ ├── mfracZcomp-14.test │ │ ├── mfracZcomp-15.test │ │ ├── mfracZcomp-16.test │ │ ├── mfracZcomp-17.test │ │ ├── mfracZcomp-18.test │ │ ├── mfracZcomp-19.test │ │ ├── mfracZcomp-20.test │ │ ├── mfracZcomp-21.test │ │ ├── mfracZcomp-22.test │ │ ├── mfracZcomp-23.test │ │ ├── mfracZcomp-24.test │ │ ├── mfracZcomp-25.test │ │ ├── mfracZcomp-26.test │ │ ├── mfracZcomp-27.test │ │ ├── mfracZcomp-28.test │ │ ├── mfracZcomp-29.test │ │ ├── mfracZcomp-30.test │ │ ├── mfracZcomp-31.test │ │ ├── mfracZcomp-32.test │ │ ├── mfracZcomp-33.test │ │ ├── mi1.test │ │ ├── mi2.test │ │ ├── mi3.test │ │ ├── mi4.test │ │ ├── miAtoken5.test │ │ ├── miSfonts8.test │ │ ├── miSfontsize9.test │ │ ├── miSmathsize16.test │ │ ├── miSmathsize17.test │ │ ├── miStoken10.test │ │ ├── mid1.test │ │ ├── mid2.test │ │ ├── miequivalents11.test │ │ ├── mifontstyle12.test │ │ ├── mimathvariant13.test │ │ ├── mimathvariant14.test │ │ ├── mlabeledtr1.test │ │ ├── mlabeledtrAside1.test │ │ ├── mlabeledtrAside2.test │ │ ├── mn1.test │ │ ├── mn2.test │ │ ├── mn3.test │ │ ├── mn4.test │ │ ├── mnAtoken6.test │ │ ├── mnAtoken7.test │ │ ├── mnSdisplaystyle9.test │ │ ├── mnSfont10.test │ │ ├── mnSscriptlevel11.test │ │ ├── mo1.test │ │ ├── mo2.test │ │ ├── mo3.test │ │ ├── mo4.test │ │ ├── mo5.test │ │ ├── mo6.test │ │ ├── mo7.test │ │ ├── mo8.test │ │ ├── moAaccent10.test │ │ ├── moAaccent9.test │ │ ├── moAform11.test │ │ ├── moAlargeop12.test │ │ ├── moAlrspace13.test │ │ ├── moAminmax14.test │ │ ├── moAmovable15.test │ │ ├── moAprime16.test │ │ ├── moAsep17.test │ │ ├── moAstretchy18.test │ │ ├── moAsymmetric19.test │ │ ├── moSminmax20.test │ │ ├── monospace.test │ │ ├── mover-01.test │ │ ├── mover-02.test │ │ ├── mover-03.test │ │ ├── mover-04.test │ │ ├── mover-05.test │ │ ├── mover-06.test │ │ ├── mover-07.test │ │ ├── mover-08.test │ │ ├── mover-09.test │ │ ├── mover-10.test │ │ ├── mover-11.test │ │ ├── mover-12.test │ │ ├── mover1.test │ │ ├── mover2.test │ │ ├── mover3.test │ │ ├── mover4.test │ │ ├── mover5.test │ │ ├── mover6.test │ │ ├── mover7.test │ │ ├── mover8.test │ │ ├── mover9.test │ │ ├── mphantomB1.test │ │ ├── mphantomBinferred2.test │ │ ├── mphantomBoperators3.test │ │ ├── mphantomSinheritance5.test │ │ ├── mrootB1.test │ │ ├── mrootSfonts3.test │ │ ├── mrootSscriptlevel4.test │ │ ├── mrow-01.test │ │ ├── mrow-02.test │ │ ├── mrow1.test │ │ ├── mrowAbg4.test │ │ ├── mrowBinferred2.test │ │ ├── mrowBnested3.test │ │ ├── ms-11.test │ │ ├── ms-12.test │ │ ├── ms-13.test │ │ ├── ms-14.test │ │ ├── ms-15.test │ │ ├── ms-16.test │ │ ├── ms1.test │ │ ├── msAdisplaystyle2.test │ │ ├── msAquotes3.test │ │ ├── msAtoken4.test │ │ ├── msAtoken5.test │ │ ├── msSinheritance7.test │ │ ├── msSinheritance8.test │ │ ├── mspace-01.test │ │ ├── mspace-02.test │ │ ├── mspace-03.test │ │ ├── mspace-04.test │ │ ├── mspace1.test │ │ ├── mspace2.test │ │ ├── mspaceAbreak3.test │ │ ├── mspacestruts2.test │ │ ├── msqrt-01.test │ │ ├── msqrt-02.test │ │ ├── msqrt-03.test │ │ ├── msqrt-04.test │ │ ├── msqrt-05.test │ │ ├── msqrt-06.test │ │ ├── msqrt-07.test │ │ ├── msqrt-08.test │ │ ├── msqrt5.test │ │ ├── msqrt6.test │ │ ├── msqrtB7.test │ │ ├── msqrtBimplied8.test │ │ ├── msqrtSinheritance9.test │ │ ├── mstyle1.test │ │ ├── mstyleA2.test │ │ ├── mstyleAdep1.test │ │ ├── mstyleAlinethick1.test │ │ ├── mstyleAminscript1.test │ │ ├── mstyleAscriptlevel1.test │ │ ├── msub-01.test │ │ ├── msub-02.test │ │ ├── msub-03.test │ │ ├── msub-04.test │ │ ├── msub-05.test │ │ ├── msub-06.test │ │ ├── msub-07.test │ │ ├── msub-08.test │ │ ├── msub-09.test │ │ ├── msub-10.test │ │ ├── msub-11.test │ │ ├── msub-12.test │ │ ├── msub1.test │ │ ├── msubsup-01.test │ │ ├── msubsup-02.test │ │ ├── msubsup-03.test │ │ ├── msubsup-04.test │ │ ├── msubsup-05.test │ │ ├── msubsup-06.test │ │ ├── msubsup-07.test │ │ ├── msubsup-08.test │ │ ├── msubsup-09.test │ │ ├── msubsup-10.test │ │ ├── msubsup-11.test │ │ ├── msubsup-12.test │ │ ├── msubsup1.test │ │ ├── msubsupBsize1.test │ │ ├── msubsupBsize2.test │ │ ├── msup-01.test │ │ ├── msup-02.test │ │ ├── msup-03.test │ │ ├── msup-04.test │ │ ├── msup-05.test │ │ ├── msup-06.test │ │ ├── msup-07.test │ │ ├── msup-08.test │ │ ├── msup-09.test │ │ ├── msup-10.test │ │ ├── msup-11.test │ │ ├── msup-12.test │ │ ├── msup1.test │ │ ├── msup2.test │ │ ├── msupBnest1.test │ │ ├── msupBsize1.test │ │ ├── msupBsize2.test │ │ ├── msupBsize3.test │ │ ├── msupSadvance1.test │ │ ├── mtable-01.test │ │ ├── mtable-03.test │ │ ├── mtable-04.test │ │ ├── mtable-05.test │ │ ├── mtable-06.test │ │ ├── mtable-07.test │ │ ├── mtable-08.test │ │ ├── mtable-09.test │ │ ├── mtable-10.test │ │ ├── mtable-11.test │ │ ├── mtable-12.test │ │ ├── mtable-13.test │ │ ├── mtable-14.test │ │ ├── mtable-15.test │ │ ├── mtable-16.test │ │ ├── mtable2.test │ │ ├── mtableAalign1.test │ │ ├── mtableAalign2.test │ │ ├── mtableAalign3.test │ │ ├── mtableAframe1.test │ │ ├── mtableAframe2.test │ │ ├── mtableAgroupalign.test │ │ ├── mtableAlines1.test │ │ ├── mtableAlines2.test │ │ ├── mtableAspacing1.test │ │ ├── mtableAspacing2.test │ │ ├── mtableAspacing3.test │ │ ├── mtableAspacing4.test │ │ ├── mtableAwidth1.test │ │ ├── mtableAwidth2.test │ │ ├── mtableAwidth3.test │ │ ├── mtableAwidth4.test │ │ ├── mtableBgap1.test │ │ ├── mtableBsize2.test │ │ ├── mtableBspan3.test │ │ ├── mtext1.test │ │ ├── mtext2.test │ │ ├── mtextAtoken3.test │ │ ├── mtextSbg4.test │ │ ├── mtextStoken6.test │ │ ├── mtextspaces7.test │ │ ├── munder-01.test │ │ ├── munder-02.test │ │ ├── munder-03.test │ │ ├── munder-04.test │ │ ├── munder-05.test │ │ ├── munder-06.test │ │ ├── munder-07.test │ │ ├── munder-08.test │ │ ├── munder-09.test │ │ ├── munder-10.test │ │ ├── munder-11.test │ │ ├── munder-12.test │ │ ├── munder1.test │ │ ├── munder2.test │ │ ├── munder3.test │ │ ├── munder4.test │ │ ├── munder5.test │ │ ├── munder6.test │ │ ├── munder7.test │ │ ├── munder8.test │ │ ├── munder9.test │ │ ├── munderover-01.test │ │ ├── munderover-02.test │ │ ├── munderover-03.test │ │ ├── munderover-04.test │ │ ├── munderover-05.test │ │ ├── munderover-06.test │ │ ├── munderover-07.test │ │ ├── munderover-08.test │ │ ├── munderover-09.test │ │ ├── munderover-10.test │ │ ├── munderover-11.test │ │ ├── munderover-12.test │ │ ├── n.test │ │ ├── nestAction1.test │ │ ├── nestFrac1.test │ │ ├── nestScript.test │ │ ├── nestTable1.test │ │ ├── nestedAwidth1.test │ │ ├── nestedMath3.test │ │ ├── o.test │ │ ├── oint1.test │ │ ├── oint2.test │ │ ├── p.test │ │ ├── primes1.test │ │ ├── primes2.test │ │ ├── prod1.test │ │ ├── prod2.test │ │ ├── q.test │ │ ├── r.test │ │ ├── rec-mlabeledtr.test │ │ ├── rec-mtable1.test │ │ ├── rec3-mphantom-1.test │ │ ├── s.test │ │ ├── sans-serif-bold-italic.test │ │ ├── sans-serif-bold.test │ │ ├── sans-serif-italic.test │ │ ├── sans-serif.test │ │ ├── script-bold.test │ │ ├── script.test │ │ ├── semantics-01.test │ │ ├── semantics-02.test │ │ ├── semantics-03.test │ │ ├── semantics-04.test │ │ ├── serif-bold-italic.test │ │ ├── serif-bold.test │ │ ├── serif-italic.test │ │ ├── serif.test │ │ ├── simplePres.test │ │ ├── sizeunits3.test │ │ ├── sizeunits4.test │ │ ├── stretchAccents1.test │ │ ├── stretchAccents2.test │ │ ├── stretchBrack1.test │ │ ├── stretchHoriz1.test │ │ ├── stretchHoriz2.test │ │ ├── stretchHoriz3.test │ │ ├── stretchTable1.test │ │ ├── stretchTable2.test │ │ ├── stretchTilde1.test │ │ ├── stretchVert1.test │ │ ├── stretchVert2.test │ │ ├── stretchVertNest2.test │ │ ├── style1.test │ │ ├── style2.test │ │ ├── sum1.test │ │ ├── sum2.test │ │ ├── t.test │ │ ├── tripleint1.test │ │ ├── tripleint2.test │ │ ├── u.test │ │ ├── v.test │ │ ├── verbar1.test │ │ ├── verbar2.test │ │ ├── w.test │ │ ├── whBcomments1.test │ │ ├── whBgeneral1.test │ │ ├── white1.test │ │ ├── white10.test │ │ ├── white2.test │ │ ├── white3.test │ │ ├── white4.test │ │ ├── white5.test │ │ ├── white6.test │ │ ├── white7.test │ │ ├── white8.test │ │ ├── white9.test │ │ ├── x.test │ │ ├── xmllang1.test │ │ ├── xref1.test │ │ ├── y.test │ │ └── z.test │ ├── omml │ │ ├── 01.test │ │ ├── 02.test │ │ ├── 03.test │ │ ├── 04.test │ │ ├── 05.test │ │ ├── 06.test │ │ ├── 07.test │ │ ├── 08.test │ │ ├── 09.test │ │ ├── 10.test │ │ ├── 11.test │ │ ├── 12.test │ │ ├── 13.test │ │ ├── 14.test │ │ ├── 15.test │ │ ├── 153a.test │ │ ├── 153b.test │ │ ├── 153c.test │ │ ├── 16.test │ │ ├── 17.test │ │ ├── 18.test │ │ ├── 19.test │ │ ├── 20.test │ │ ├── 21.test │ │ ├── 22.test │ │ ├── axiom_of_power_set.test │ │ ├── binomial_coefficient.test │ │ ├── boxed.test │ │ ├── cancel.test │ │ ├── choose.test │ │ ├── complex_number.test │ │ ├── deMorgans_law.test │ │ ├── differentiable_manifold.test │ │ ├── divergence.test │ │ ├── ensuremath.test │ │ ├── genfrac.test │ │ ├── issue112.test │ │ ├── labels.test │ │ ├── macros.test │ │ ├── moore_determinant.test │ │ ├── notin.test │ │ ├── operatorname.test │ │ ├── phantom.test │ │ ├── schwinger_dyson.test │ │ ├── sophomores_dream.test │ │ ├── sphere_volume.test │ │ ├── stackrel.test │ │ ├── substack.test │ │ ├── subsup.test │ │ ├── text.test │ │ ├── tokens.test │ │ └── unicode.test │ └── tex │ │ ├── 01.test │ │ ├── 02.test │ │ ├── 03.test │ │ ├── 04.test │ │ ├── 05.test │ │ ├── 06.test │ │ ├── 07.test │ │ ├── 08.test │ │ ├── 09.test │ │ ├── 10.test │ │ ├── 11.test │ │ ├── 12.test │ │ ├── 13.test │ │ ├── 14.test │ │ ├── 15.test │ │ ├── 16.test │ │ ├── 17.test │ │ ├── 18.test │ │ ├── 19.test │ │ ├── 20.test │ │ ├── 21.test │ │ ├── 22.test │ │ ├── 23.test │ │ ├── axiom_of_power_set.test │ │ ├── binomial_coefficient.test │ │ ├── boxed.test │ │ ├── cancel.test │ │ ├── choose.test │ │ ├── complex_number.test │ │ ├── cospan.test │ │ ├── deMorgans_law.test │ │ ├── differentiable_manifold.test │ │ ├── divergence.test │ │ ├── ensuremath.test │ │ ├── genfrac.test │ │ ├── issue109.test │ │ ├── issue204.test │ │ ├── issue229.test │ │ ├── labels.test │ │ ├── macros.test │ │ ├── math-in-text.test │ │ ├── moore_determinant.test │ │ ├── notin.test │ │ ├── operatorname.test │ │ ├── phantom.test │ │ ├── quadratic_formula.test │ │ ├── schwinger_dyson.test │ │ ├── simple_sum_formula.test │ │ ├── sophomores_dream.test │ │ ├── span.test │ │ ├── sphere_volume.test │ │ ├── stackrel.test │ │ ├── substack.test │ │ ├── subsup.test │ │ ├── text.test │ │ ├── tokens.test │ │ └── unicode.test ├── regression │ ├── 187.test │ ├── 191.test │ ├── 196.test │ ├── 203.test │ ├── 234.test │ ├── 235.test │ ├── 236a.test │ ├── 236b.test │ ├── 238.test │ ├── 239.test │ ├── 241.test │ ├── 244.test │ ├── 245a.test │ ├── 245b.test │ ├── 252.test │ ├── 258.test │ ├── 259.test │ ├── 264.test │ ├── 273.test │ └── 275.test ├── roundtrip │ ├── 00000_C0_Controls_and_Basic_Latin.native │ ├── 00080_C1_Controls_and_Latin-1_Supplement.native │ ├── 00100_Latin_Extended-A.native │ ├── 00180_Latin_Extended-B.native │ ├── 00250_IPA_Extensions.native │ ├── 002B0_Spacing_Modifier_Letters.native │ ├── 00300_Combining_Diacritical_Marks.native │ ├── 00370_Greek_and_Coptic.native │ ├── 00400_Cyrillic.native │ ├── 01.native │ ├── 01E00_Latin_Extended_Additional.native │ ├── 01F00_Greek_Extended.native │ ├── 02.native │ ├── 02000_General_Punctuation.native │ ├── 02070_Superscripts_and_Subscripts.native │ ├── 020A0_Currency_Symbols.native │ ├── 020D0_Combining_Diacritical_Marks_for_Symbols.native │ ├── 02100_Letterlike_Symbols.native │ ├── 02150_Number_Forms.native │ ├── 02190_Arrows.native │ ├── 02200_Mathematical_Operators.native │ ├── 02300_Miscellaneous_Technical.native │ ├── 02400_Control_Pictures.native │ ├── 02440_Optical_Character_Recognition.native │ ├── 02460_Enclosed_Alphanumerics.native │ ├── 02500_Box_Drawing.native │ ├── 02580_Block_Elements.native │ ├── 025A0_Geometric_Shapes.native │ ├── 02600_Miscellaneous_Symbols.native │ ├── 02700_Dingbats.native │ ├── 027C0_Miscellaneous_Mathematical_Symbols-A.native │ ├── 027F0_Supplemental_Arrows-A.native │ ├── 02900_Supplemental_Arrows-B.native │ ├── 02980_Miscellaneous_Mathematical_Symbols-B.native │ ├── 02A00_Supplemental_Mathematical_Operators.native │ ├── 02B00_Miscellaneous_Symbols_and_Arrows.native │ ├── 03.native │ ├── 04.native │ ├── 05.native │ ├── 06.native │ ├── 07.native │ ├── 08.native │ ├── 09.native │ ├── 0FB00_Alphabetic_Presentation_Forms.native │ ├── 0FB50_Arabic_Presentation_Forms-A.native │ ├── 0FE00_Variation_Selectors.native │ ├── 0FE10_Vertical_Forms.native │ ├── 0FE20_Combining_Half_Marks.native │ ├── 0FE30_CJK_Compatibility_Forms.native │ ├── 0FE50_Small_Form_Variants.native │ ├── 0FE70_Arabic_Presentation_Forms-B.native │ ├── 10.native │ ├── 11.native │ ├── 12.native │ ├── 13.native │ ├── 14.native │ ├── 15.native │ ├── 16.native │ ├── 17.native │ ├── 18.native │ ├── 19.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-italic.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-script.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_double-struck.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_fraktur.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_italic.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_monospace.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif.native │ ├── 1D400_Mathematical_Alphanumeric_Symbols_script.native │ ├── 20.native │ ├── 21.native │ ├── 22.native │ ├── 23.native │ ├── a.native │ ├── abs1.native │ ├── accents1.native │ ├── accents2.native │ ├── accents3.native │ ├── accents4.native │ ├── accents5.native │ ├── accents6.native │ ├── attribQuote1.native │ ├── axiom_of_power_set.native │ ├── b.native │ ├── badAttribs2.native │ ├── badAttribsGlyph4.native │ ├── badAttribsVal3.native │ ├── badEntity1.native │ ├── binomial_coefficient.native │ ├── boxed.native │ ├── c.native │ ├── cancel.native │ ├── chain1.native │ ├── choose.native │ ├── class1.native │ ├── class2.native │ ├── clipboard1.native │ ├── clipboard2.native │ ├── complex1.native │ ├── complex2.native │ ├── complex3.native │ ├── complex_number.native │ ├── coprod2.native │ ├── cospan.native │ ├── d.native │ ├── deMorgans_law.native │ ├── differentiable_manifold.native │ ├── digamma.native │ ├── digit-bold.native │ ├── digit-double-struck.native │ ├── digit-monospace.native │ ├── digit-sans-serif-bold.native │ ├── digit-sans-serif.native │ ├── divergence.native │ ├── dotless.native │ ├── double-struck.native │ ├── doubleint1.native │ ├── e.native │ ├── embStretch1.native │ ├── emptyContent1.native │ ├── ensuremath.native │ ├── f.native │ ├── fraktur-bold.native │ ├── fraktur.native │ ├── g.native │ ├── genBvert1.native │ ├── genfrac.native │ ├── greek-bold-italic.native │ ├── greek-bold.native │ ├── greek-italic.native │ ├── greek-sans-serif-bold-italic.native │ ├── greek-sans-serif-bold.native │ ├── h.native │ ├── href1.native │ ├── href2.native │ ├── href3.native │ ├── i.native │ ├── int10.native │ ├── int4.native │ ├── int5.native │ ├── int6.native │ ├── int7.native │ ├── intDispStyle.native │ ├── intNested3.native │ ├── intSize1.native │ ├── intSize2.native │ ├── invChars.native │ ├── issue109.native │ ├── j.native │ ├── k.native │ ├── l.native │ ├── labels.native │ ├── largeop1.native │ ├── largeop2.native │ ├── largeopPos3.native │ ├── latin-bold-italic.native │ ├── latin-bold.native │ ├── latin-italic.native │ ├── latin-sans-serif-bold-italic.native │ ├── latin-sans-serif-bold.native │ ├── latin-sans-serif-italic.native │ ├── latin-sans-serif.native │ ├── m.native │ ├── m10.native │ ├── m100.native │ ├── m1000.native │ ├── macros.native │ ├── maction-01.native │ ├── maction-02.native │ ├── maction-03.native │ ├── maction-04.native │ ├── maction-05.native │ ├── maction-06.native │ ├── maction-07.native │ ├── maction-08.native │ ├── mactionBhigh1.native │ ├── mactionBtooltip1.native │ ├── maligngroup1.native │ ├── math-in-text.native │ ├── math3.native │ ├── mathAdisplay1.native │ ├── mathBevelledFrac.native │ ├── mathDir.native │ ├── mathTable1.native │ ├── mfenced-01.native │ ├── mfenced-02.native │ ├── mfenced-03.native │ ├── mfenced-04.native │ ├── mfenced-05.native │ ├── mfenced-06.native │ ├── mfenced-07.native │ ├── mfenced-08.native │ ├── mfenced1.native │ ├── mfenced2.native │ ├── mfenced5.native │ ├── mfencedAdelims6.native │ ├── mfencedAempty.native │ ├── mfencedBfences7.native │ ├── mfencedBseparators8.native │ ├── mfencedSfonts9.native │ ├── mfrac-01.native │ ├── mfrac-02.native │ ├── mfrac-03.native │ ├── mfrac-04.native │ ├── mfrac-05.native │ ├── mfrac-06.native │ ├── mfrac-07.native │ ├── mfrac-08.native │ ├── mfrac-09.native │ ├── mfrac-10.native │ ├── mfrac-11.native │ ├── mfrac-12.native │ ├── mfrac1.native │ ├── mfrac2.native │ ├── mfrac3.native │ ├── mfrac5.native │ ├── mfrac6.native │ ├── mfrac7.native │ ├── mfracAcss8.native │ ├── mfracAmultiplier10.native │ ├── mfracBalign16.native │ ├── mfracBheight17.native │ ├── mfracBhoriz11.native │ ├── mfracBvert12.native │ ├── mfracSfonts13.native │ ├── mfracSinheritance14.native │ ├── mfracSscriptlevel15.native │ ├── mfracZcomp-01.native │ ├── mfracZcomp-02.native │ ├── mfracZcomp-03.native │ ├── mfracZcomp-04.native │ ├── mfracZcomp-05.native │ ├── mfracZcomp-06.native │ ├── mfracZcomp-07.native │ ├── mfracZcomp-08.native │ ├── mfracZcomp-09.native │ ├── mfracZcomp-10.native │ ├── mfracZcomp-11.native │ ├── mfracZcomp-12.native │ ├── mfracZcomp-13.native │ ├── mfracZcomp-14.native │ ├── mfracZcomp-15.native │ ├── mfracZcomp-16.native │ ├── mfracZcomp-17.native │ ├── mfracZcomp-18.native │ ├── mfracZcomp-19.native │ ├── mfracZcomp-20.native │ ├── mfracZcomp-21.native │ ├── mfracZcomp-22.native │ ├── mfracZcomp-23.native │ ├── mfracZcomp-24.native │ ├── mfracZcomp-25.native │ ├── mfracZcomp-26.native │ ├── mfracZcomp-28.native │ ├── mfracZcomp-29.native │ ├── mfracZcomp-30.native │ ├── mfracZcomp-31.native │ ├── mfracZcomp-32.native │ ├── mfracZcomp-33.native │ ├── mi1.native │ ├── mi2.native │ ├── mi3.native │ ├── mi4.native │ ├── miAtoken5.native │ ├── miSfonts8.native │ ├── miSfontsize9.native │ ├── miSmathsize16.native │ ├── miSmathsize17.native │ ├── miStoken10.native │ ├── mid1.native │ ├── mid2.native │ ├── miequivalents11.native │ ├── mifontstyle12.native │ ├── mimathvariant13.native │ ├── mimathvariant14.native │ ├── mlabeledtrAside1.native │ ├── mlabeledtrAside2.native │ ├── mn1.native │ ├── mn2.native │ ├── mn3.native │ ├── mn4.native │ ├── mnAtoken6.native │ ├── mnAtoken7.native │ ├── mnSdisplaystyle9.native │ ├── mnSfont10.native │ ├── mnSscriptlevel11.native │ ├── mo1.native │ ├── mo3.native │ ├── mo6.native │ ├── mo7.native │ ├── moAaccent10.native │ ├── moAaccent9.native │ ├── moAform11.native │ ├── moAlargeop12.native │ ├── moAlrspace13.native │ ├── moAmovable15.native │ ├── moAprime16.native │ ├── moAsep17.native │ ├── moAstretchy18.native │ ├── moAsymmetric19.native │ ├── moSminmax20.native │ ├── monospace.native │ ├── moore_determinant.native │ ├── mover-01.native │ ├── mover-02.native │ ├── mover-03.native │ ├── mover-04.native │ ├── mover-05.native │ ├── mover-06.native │ ├── mover-07.native │ ├── mover-08.native │ ├── mover-09.native │ ├── mover-10.native │ ├── mover-11.native │ ├── mover-12.native │ ├── mover1.native │ ├── mover2.native │ ├── mover3.native │ ├── mover4.native │ ├── mover5.native │ ├── mover6.native │ ├── mover7.native │ ├── mover8.native │ ├── mover9.native │ ├── mphantomB1.native │ ├── mphantomBinferred2.native │ ├── mphantomBoperators3.native │ ├── mphantomSinheritance5.native │ ├── mrootB1.native │ ├── mrootSfonts3.native │ ├── mrootSscriptlevel4.native │ ├── mrow-01.native │ ├── mrow-02.native │ ├── mrow1.native │ ├── mrowAbg4.native │ ├── mrowBinferred2.native │ ├── ms-12.native │ ├── ms-14.native │ ├── ms-15.native │ ├── ms-16.native │ ├── ms1.native │ ├── msAdisplaystyle2.native │ ├── msAquotes3.native │ ├── msAtoken4.native │ ├── msAtoken5.native │ ├── msSinheritance7.native │ ├── msSinheritance8.native │ ├── mspace-01.native │ ├── mspace-02.native │ ├── mspace-03.native │ ├── mspace-04.native │ ├── mspace1.native │ ├── mspace2.native │ ├── mspaceAbreak3.native │ ├── mspacestruts2.native │ ├── msqrt-01.native │ ├── msqrt-02.native │ ├── msqrt-03.native │ ├── msqrt-04.native │ ├── msqrt-05.native │ ├── msqrt-06.native │ ├── msqrt-07.native │ ├── msqrt-08.native │ ├── msqrt5.native │ ├── msqrtB7.native │ ├── msqrtBimplied8.native │ ├── msqrtSinheritance9.native │ ├── mstyle1.native │ ├── mstyleA2.native │ ├── mstyleAdep1.native │ ├── mstyleAlinethick1.native │ ├── mstyleAminscript1.native │ ├── mstyleAscriptlevel1.native │ ├── msub-01.native │ ├── msub-02.native │ ├── msub-03.native │ ├── msub-04.native │ ├── msub-05.native │ ├── msub-06.native │ ├── msub-07.native │ ├── msub-08.native │ ├── msub-09.native │ ├── msub-10.native │ ├── msub-11.native │ ├── msub-12.native │ ├── msub1.native │ ├── msubsup-01.native │ ├── msubsup-02.native │ ├── msubsup-03.native │ ├── msubsup-04.native │ ├── msubsup-05.native │ ├── msubsup-06.native │ ├── msubsup-07.native │ ├── msubsup-08.native │ ├── msubsup-09.native │ ├── msubsup-10.native │ ├── msubsup-11.native │ ├── msubsup-12.native │ ├── msubsup1.native │ ├── msubsupBsize1.native │ ├── msubsupBsize2.native │ ├── msup-01.native │ ├── msup-02.native │ ├── msup-03.native │ ├── msup-04.native │ ├── msup-05.native │ ├── msup-06.native │ ├── msup-07.native │ ├── msup-08.native │ ├── msup-09.native │ ├── msup-10.native │ ├── msup-11.native │ ├── msup-12.native │ ├── msup1.native │ ├── msup2.native │ ├── msupBnest1.native │ ├── msupBsize1.native │ ├── msupBsize2.native │ ├── msupBsize3.native │ ├── msupSadvance1.native │ ├── mtable-01.native │ ├── mtable-05.native │ ├── mtable-07.native │ ├── mtable-08.native │ ├── mtable-09.native │ ├── mtable-11.native │ ├── mtable-13.native │ ├── mtable-15.native │ ├── mtable2.native │ ├── mtableAalign1.native │ ├── mtableAalign2.native │ ├── mtableAalign3.native │ ├── mtableAgroupalign.native │ ├── mtableAwidth2.native │ ├── mtableAwidth4.native │ ├── mtableBgap1.native │ ├── mtableBsize2.native │ ├── mtableBspan3.native │ ├── mtext2.native │ ├── mtextAtoken3.native │ ├── mtextSbg4.native │ ├── mtextspaces7.native │ ├── munder-01.native │ ├── munder-02.native │ ├── munder-03.native │ ├── munder-04.native │ ├── munder-05.native │ ├── munder-06.native │ ├── munder-07.native │ ├── munder-08.native │ ├── munder-09.native │ ├── munder-10.native │ ├── munder-11.native │ ├── munder-12.native │ ├── munder1.native │ ├── munder2.native │ ├── munder3.native │ ├── munder4.native │ ├── munder5.native │ ├── munder6.native │ ├── munder7.native │ ├── munder8.native │ ├── munder9.native │ ├── munderover-01.native │ ├── munderover-02.native │ ├── munderover-03.native │ ├── munderover-04.native │ ├── munderover-05.native │ ├── munderover-06.native │ ├── munderover-07.native │ ├── munderover-08.native │ ├── munderover-09.native │ ├── munderover-10.native │ ├── munderover-11.native │ ├── munderover-12.native │ ├── n.native │ ├── nestAction1.native │ ├── nestFrac1.native │ ├── nestScript.native │ ├── nestTable1.native │ ├── nestedAwidth1.native │ ├── notin.native │ ├── o.native │ ├── oint2.native │ ├── operatorname.native │ ├── p.native │ ├── phantom.native │ ├── primes1.native │ ├── primes2.native │ ├── prod1.native │ ├── q.native │ ├── r.native │ ├── rec-mlabeledtr.native │ ├── rec-mtable1.native │ ├── s.native │ ├── sans-serif-bold-italic.native │ ├── sans-serif-bold.native │ ├── sans-serif-italic.native │ ├── sans-serif.native │ ├── schwinger_dyson.native │ ├── script-bold.native │ ├── script.native │ ├── semantics-01.native │ ├── semantics-02.native │ ├── serif-bold-italic.native │ ├── serif-bold.native │ ├── serif-italic.native │ ├── serif.native │ ├── simplePres.native │ ├── simple_sum_formula.native │ ├── sizeunits3.native │ ├── sizeunits4.native │ ├── sophomores_dream.native │ ├── span.native │ ├── sphere_volume.native │ ├── stackrel.native │ ├── stretchAccents1.native │ ├── stretchAccents2.native │ ├── stretchBrack1.native │ ├── stretchHoriz1.native │ ├── stretchHoriz2.native │ ├── stretchHoriz3.native │ ├── stretchTable1.native │ ├── stretchTable2.native │ ├── stretchTilde1.native │ ├── stretchVert1.native │ ├── stretchVert2.native │ ├── stretchVertNest2.native │ ├── style2.native │ ├── substack.native │ ├── subsup.native │ ├── sum2.native │ ├── t.native │ ├── text.native │ ├── tokens.native │ ├── tripleint1.native │ ├── u.native │ ├── unicode.native │ ├── v.native │ ├── verbar2.native │ ├── w.native │ ├── whBcomments1.native │ ├── white1.native │ ├── white10.native │ ├── white2.native │ ├── white3.native │ ├── white4.native │ ├── white5.native │ ├── white6.native │ ├── white7.native │ ├── white8.native │ ├── white9.native │ ├── x.native │ ├── xref1.native │ ├── y.native │ └── z.native ├── test-texmath.hs └── writer │ ├── eqn │ ├── 00000_C0_Controls_and_Basic_Latin.test │ ├── 00080_C1_Controls_and_Latin-1_Supplement.test │ ├── 00100_Latin_Extended-A.test │ ├── 00180_Latin_Extended-B.test │ ├── 00250_IPA_Extensions.test │ ├── 002B0_Spacing_Modifier_Letters.test │ ├── 00300_Combining_Diacritical_Marks.test │ ├── 00370_Greek_and_Coptic.test │ ├── 00400_Cyrillic.test │ ├── 01.test │ ├── 01E00_Latin_Extended_Additional.test │ ├── 01F00_Greek_Extended.test │ ├── 02.test │ ├── 02000_General_Punctuation.test │ ├── 02070_Superscripts_and_Subscripts.test │ ├── 020A0_Currency_Symbols.test │ ├── 020D0_Combining_Diacritical_Marks_for_Symbols.test │ ├── 02100_Letterlike_Symbols.test │ ├── 02150_Number_Forms.test │ ├── 02190_Arrows.test │ ├── 02200_Mathematical_Operators.test │ ├── 02300_Miscellaneous_Technical.test │ ├── 02400_Control_Pictures.test │ ├── 02440_Optical_Character_Recognition.test │ ├── 02460_Enclosed_Alphanumerics.test │ ├── 02500_Box_Drawing.test │ ├── 02580_Block_Elements.test │ ├── 025A0_Geometric_Shapes.test │ ├── 02600_Miscellaneous_Symbols.test │ ├── 02700_Dingbats.test │ ├── 027C0_Miscellaneous_Mathematical_Symbols-A.test │ ├── 027F0_Supplemental_Arrows-A.test │ ├── 02900_Supplemental_Arrows-B.test │ ├── 02980_Miscellaneous_Mathematical_Symbols-B.test │ ├── 02A00_Supplemental_Mathematical_Operators.test │ ├── 02B00_Miscellaneous_Symbols_and_Arrows.test │ ├── 03.test │ ├── 04.test │ ├── 05.test │ ├── 06.test │ ├── 07.test │ ├── 08.test │ ├── 09.test │ ├── 0FB00_Alphabetic_Presentation_Forms.test │ ├── 0FB50_Arabic_Presentation_Forms-A.test │ ├── 0FE00_Variation_Selectors.test │ ├── 0FE10_Vertical_Forms.test │ ├── 0FE20_Combining_Half_Marks.test │ ├── 0FE30_CJK_Compatibility_Forms.test │ ├── 0FE50_Small_Form_Variants.test │ ├── 0FE70_Arabic_Presentation_Forms-B.test │ ├── 10.test │ ├── 11.test │ ├── 12.test │ ├── 13.test │ ├── 14.test │ ├── 15.test │ ├── 16.test │ ├── 17.test │ ├── 18.test │ ├── 19.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-script.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_double-struck.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_fraktur.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_monospace.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_script.test │ ├── 20.test │ ├── 21.test │ ├── 22.test │ ├── 23.test │ ├── a.test │ ├── abs1.test │ ├── accents1.test │ ├── accents2.test │ ├── accents3.test │ ├── accents4.test │ ├── accents5.test │ ├── accents6.test │ ├── attribQuote1.test │ ├── axiom_of_power_set.test │ ├── b.test │ ├── badAttribs2.test │ ├── badAttribsGlyph4.test │ ├── badAttribsVal3.test │ ├── badEntity1.test │ ├── binomial_coefficient.test │ ├── boxed.test │ ├── c.test │ ├── cancel.test │ ├── chain2.test │ ├── choose.test │ ├── class2.test │ ├── clipboard1.test │ ├── clipboard2.test │ ├── complex1.test │ ├── complex2.test │ ├── complex3.test │ ├── complex_number.test │ ├── coprod2.test │ ├── cospan.test │ ├── d.test │ ├── deMorgans_law.test │ ├── differentiable_manifold.test │ ├── digamma.test │ ├── digit-bold.test │ ├── digit-double-struck.test │ ├── digit-monospace.test │ ├── digit-sans-serif-bold.test │ ├── digit-sans-serif.test │ ├── divergence.test │ ├── dotless.test │ ├── double-struck.test │ ├── doubleint1.test │ ├── e.test │ ├── embStretch1.test │ ├── emptyContent1.test │ ├── ensuremath.test │ ├── f.test │ ├── fraktur-bold.test │ ├── fraktur.test │ ├── g.test │ ├── genBvert1.test │ ├── genfrac.test │ ├── greek-bold-italic.test │ ├── greek-bold.test │ ├── greek-italic.test │ ├── greek-sans-serif-bold-italic.test │ ├── greek-sans-serif-bold.test │ ├── h.test │ ├── href1.test │ ├── href2.test │ ├── href3.test │ ├── i.test │ ├── int1.test │ ├── int4.test │ ├── int6.test │ ├── int7.test │ ├── int9.test │ ├── intDispStyle.test │ ├── intNested3.test │ ├── intSize1.test │ ├── intSize2.test │ ├── invChars.test │ ├── issue109.test │ ├── j.test │ ├── k.test │ ├── l.test │ ├── labels.test │ ├── largeop1.test │ ├── largeop2.test │ ├── largeopPos3.test │ ├── latin-bold-italic.test │ ├── latin-bold.test │ ├── latin-italic.test │ ├── latin-sans-serif-bold-italic.test │ ├── latin-sans-serif-bold.test │ ├── latin-sans-serif-italic.test │ ├── latin-sans-serif.test │ ├── m.test │ ├── m10.test │ ├── m100.test │ ├── m1000.test │ ├── macros.test │ ├── maction-01.test │ ├── maction-02.test │ ├── maction-03.test │ ├── maction-04.test │ ├── maction-05.test │ ├── maction-06.test │ ├── maction-07.test │ ├── maction-08.test │ ├── mactionBstatus1.test │ ├── mactionBtoggle1.test │ ├── mactionBtooltip1.test │ ├── maligngroup1.test │ ├── math-in-text.test │ ├── math3.test │ ├── mathAdisplay1.test │ ├── mathBevelledFrac.test │ ├── mathTable1.test │ ├── merrorB3.test │ ├── mfenced-01.test │ ├── mfenced-02.test │ ├── mfenced-03.test │ ├── mfenced-04.test │ ├── mfenced-05.test │ ├── mfenced-06.test │ ├── mfenced-07.test │ ├── mfenced-08.test │ ├── mfenced1.test │ ├── mfenced5.test │ ├── mfencedAdelims6.test │ ├── mfencedAempty.test │ ├── mfencedBfences7.test │ ├── mfencedBseparators8.test │ ├── mfencedSfonts9.test │ ├── mfrac-01.test │ ├── mfrac-02.test │ ├── mfrac-03.test │ ├── mfrac-04.test │ ├── mfrac-05.test │ ├── mfrac-06.test │ ├── mfrac-07.test │ ├── mfrac-08.test │ ├── mfrac-09.test │ ├── mfrac-10.test │ ├── mfrac-11.test │ ├── mfrac-12.test │ ├── mfrac1.test │ ├── mfrac2.test │ ├── mfrac3.test │ ├── mfrac4.test │ ├── mfrac7.test │ ├── mfracAcss8.test │ ├── mfracAmultiplier10.test │ ├── mfracBalign16.test │ ├── mfracBheight17.test │ ├── mfracBhoriz11.test │ ├── mfracBvert12.test │ ├── mfracSfonts13.test │ ├── mfracSinheritance14.test │ ├── mfracSscriptlevel15.test │ ├── mfracZcomp-01.test │ ├── mfracZcomp-02.test │ ├── mfracZcomp-03.test │ ├── mfracZcomp-04.test │ ├── mfracZcomp-05.test │ ├── mfracZcomp-06.test │ ├── mfracZcomp-07.test │ ├── mfracZcomp-08.test │ ├── mfracZcomp-09.test │ ├── mfracZcomp-10.test │ ├── mfracZcomp-11.test │ ├── mfracZcomp-12.test │ ├── mfracZcomp-13.test │ ├── mfracZcomp-14.test │ ├── mfracZcomp-15.test │ ├── mfracZcomp-16.test │ ├── mfracZcomp-17.test │ ├── mfracZcomp-18.test │ ├── mfracZcomp-19.test │ ├── mfracZcomp-20.test │ ├── mfracZcomp-21.test │ ├── mfracZcomp-22.test │ ├── mfracZcomp-23.test │ ├── mfracZcomp-24.test │ ├── mfracZcomp-25.test │ ├── mfracZcomp-26.test │ ├── mfracZcomp-28.test │ ├── mfracZcomp-29.test │ ├── mfracZcomp-30.test │ ├── mfracZcomp-31.test │ ├── mfracZcomp-32.test │ ├── mfracZcomp-33.test │ ├── mi1.test │ ├── mi2.test │ ├── mi3.test │ ├── mi4.test │ ├── miAtoken5.test │ ├── miSfonts8.test │ ├── miSfontsize9.test │ ├── miSmathsize16.test │ ├── miSmathsize17.test │ ├── miStoken10.test │ ├── mid1.test │ ├── mid2.test │ ├── miequivalents11.test │ ├── mifontstyle12.test │ ├── mimathvariant13.test │ ├── mimathvariant14.test │ ├── mlabeledtrAside2.test │ ├── mn1.test │ ├── mn2.test │ ├── mn3.test │ ├── mn4.test │ ├── mnAtoken6.test │ ├── mnAtoken7.test │ ├── mnSdisplaystyle9.test │ ├── mnSfont10.test │ ├── mnSscriptlevel11.test │ ├── mo1.test │ ├── mo2.test │ ├── mo3.test │ ├── mo6.test │ ├── mo7.test │ ├── moAaccent10.test │ ├── moAaccent9.test │ ├── moAform11.test │ ├── moAlargeop12.test │ ├── moAlrspace13.test │ ├── moAmovable15.test │ ├── moAprime16.test │ ├── moAsep17.test │ ├── moAstretchy18.test │ ├── moAsymmetric19.test │ ├── moSminmax20.test │ ├── monospace.test │ ├── moore_determinant.test │ ├── mover-01.test │ ├── mover-02.test │ ├── mover-03.test │ ├── mover-04.test │ ├── mover-05.test │ ├── mover-06.test │ ├── mover-07.test │ ├── mover-08.test │ ├── mover-09.test │ ├── mover-10.test │ ├── mover-11.test │ ├── mover-12.test │ ├── mover1.test │ ├── mover2.test │ ├── mover3.test │ ├── mover4.test │ ├── mover5.test │ ├── mover6.test │ ├── mover7.test │ ├── mover8.test │ ├── mover9.test │ ├── mphantomB1.test │ ├── mphantomBinferred2.test │ ├── mphantomBoperators3.test │ ├── mphantomSinheritance5.test │ ├── mrootB1.test │ ├── mrootSfonts3.test │ ├── mrootSscriptlevel4.test │ ├── mrow-01.test │ ├── mrow-02.test │ ├── mrowAbg4.test │ ├── mrowBinferred2.test │ ├── ms-13.test │ ├── ms-14.test │ ├── ms-15.test │ ├── ms-16.test │ ├── ms1.test │ ├── msAdisplaystyle2.test │ ├── msAquotes3.test │ ├── msAtoken4.test │ ├── msAtoken5.test │ ├── msSinheritance7.test │ ├── msSinheritance8.test │ ├── mspace-01.test │ ├── mspace-02.test │ ├── mspace-03.test │ ├── mspace-04.test │ ├── mspace1.test │ ├── mspace2.test │ ├── mspaceAbreak3.test │ ├── mspacestruts2.test │ ├── msqrt-01.test │ ├── msqrt-02.test │ ├── msqrt-03.test │ ├── msqrt-04.test │ ├── msqrt-05.test │ ├── msqrt-06.test │ ├── msqrt-07.test │ ├── msqrt-08.test │ ├── msqrt5.test │ ├── msqrtB7.test │ ├── msqrtBimplied8.test │ ├── msqrtSinheritance9.test │ ├── mstyle1.test │ ├── mstyleA2.test │ ├── mstyleAlinethick1.test │ ├── mstyleAminscript1.test │ ├── mstyleAscriptlevel1.test │ ├── msub-01.test │ ├── msub-02.test │ ├── msub-03.test │ ├── msub-04.test │ ├── msub-05.test │ ├── msub-06.test │ ├── msub-07.test │ ├── msub-08.test │ ├── msub-09.test │ ├── msub-10.test │ ├── msub-11.test │ ├── msub-12.test │ ├── msub1.test │ ├── msubsup-01.test │ ├── msubsup-02.test │ ├── msubsup-03.test │ ├── msubsup-04.test │ ├── msubsup-05.test │ ├── msubsup-06.test │ ├── msubsup-07.test │ ├── msubsup-08.test │ ├── msubsup-09.test │ ├── msubsup-10.test │ ├── msubsup-11.test │ ├── msubsup-12.test │ ├── msubsup1.test │ ├── msubsupBsize1.test │ ├── msubsupBsize2.test │ ├── msup-01.test │ ├── msup-02.test │ ├── msup-03.test │ ├── msup-04.test │ ├── msup-05.test │ ├── msup-06.test │ ├── msup-07.test │ ├── msup-08.test │ ├── msup-09.test │ ├── msup-10.test │ ├── msup-11.test │ ├── msup-12.test │ ├── msup1.test │ ├── msup2.test │ ├── msupBnest1.test │ ├── msupBsize1.test │ ├── msupBsize2.test │ ├── msupBsize3.test │ ├── msupSadvance1.test │ ├── mtable-01.test │ ├── mtable-05.test │ ├── mtable-07.test │ ├── mtable-08.test │ ├── mtable-09.test │ ├── mtable-10.test │ ├── mtable-11.test │ ├── mtable-16.test │ ├── mtable2.test │ ├── mtableAalign2.test │ ├── mtableAalign3.test │ ├── mtableAgroupalign.test │ ├── mtableAlines2.test │ ├── mtableAspacing4.test │ ├── mtableAwidth2.test │ ├── mtableAwidth3.test │ ├── mtableBgap1.test │ ├── mtableBsize2.test │ ├── mtableBspan3.test │ ├── mtext2.test │ ├── mtextAtoken3.test │ ├── mtextStoken6.test │ ├── mtextspaces7.test │ ├── munder-01.test │ ├── munder-02.test │ ├── munder-03.test │ ├── munder-04.test │ ├── munder-05.test │ ├── munder-06.test │ ├── munder-07.test │ ├── munder-08.test │ ├── munder-09.test │ ├── munder-10.test │ ├── munder-11.test │ ├── munder-12.test │ ├── munder1.test │ ├── munder2.test │ ├── munder3.test │ ├── munder4.test │ ├── munder5.test │ ├── munder6.test │ ├── munder7.test │ ├── munder8.test │ ├── munder9.test │ ├── munderover-01.test │ ├── munderover-02.test │ ├── munderover-03.test │ ├── munderover-04.test │ ├── munderover-05.test │ ├── munderover-06.test │ ├── munderover-07.test │ ├── munderover-08.test │ ├── munderover-09.test │ ├── munderover-10.test │ ├── munderover-11.test │ ├── munderover-12.test │ ├── n.test │ ├── nestAction1.test │ ├── nestFrac1.test │ ├── nestScript.test │ ├── nestTable1.test │ ├── nestedAwidth1.test │ ├── notin.test │ ├── o.test │ ├── oint1.test │ ├── operatorname.test │ ├── p.test │ ├── phantom.test │ ├── primes1.test │ ├── primes2.test │ ├── prod2.test │ ├── q.test │ ├── r.test │ ├── rec-mlabeledtr.test │ ├── rec-mtable1.test │ ├── rec3-mphantom-1.test │ ├── s.test │ ├── sans-serif-bold-italic.test │ ├── sans-serif-bold.test │ ├── sans-serif-italic.test │ ├── sans-serif.test │ ├── schwinger_dyson.test │ ├── script-bold.test │ ├── script.test │ ├── semantics-01.test │ ├── semantics-03.test │ ├── serif-bold-italic.test │ ├── serif-bold.test │ ├── serif-italic.test │ ├── serif.test │ ├── simplePres.test │ ├── simple_sum_formula.test │ ├── sizeunits3.test │ ├── sizeunits4.test │ ├── sophomores_dream.test │ ├── span.test │ ├── sphere_volume.test │ ├── stackrel.test │ ├── stretchAccents1.test │ ├── stretchAccents2.test │ ├── stretchBrack1.test │ ├── stretchHoriz1.test │ ├── stretchHoriz2.test │ ├── stretchHoriz3.test │ ├── stretchTable1.test │ ├── stretchTable2.test │ ├── stretchTilde1.test │ ├── stretchVert1.test │ ├── stretchVert2.test │ ├── stretchVertNest2.test │ ├── style1.test │ ├── style2.test │ ├── substack.test │ ├── subsup.test │ ├── sum1.test │ ├── t.test │ ├── text.test │ ├── tokens.test │ ├── tripleint2.test │ ├── u.test │ ├── unicode.test │ ├── v.test │ ├── verbar2.test │ ├── w.test │ ├── whBcomments1.test │ ├── whBgeneral1.test │ ├── white1.test │ ├── white10.test │ ├── white2.test │ ├── white3.test │ ├── white4.test │ ├── white5.test │ ├── white6.test │ ├── white7.test │ ├── white8.test │ ├── white9.test │ ├── x.test │ ├── xmllang1.test │ ├── y.test │ └── z.test │ ├── mml │ ├── 00000_C0_Controls_and_Basic_Latin.test │ ├── 00080_C1_Controls_and_Latin-1_Supplement.test │ ├── 00100_Latin_Extended-A.test │ ├── 00180_Latin_Extended-B.test │ ├── 00250_IPA_Extensions.test │ ├── 002B0_Spacing_Modifier_Letters.test │ ├── 00300_Combining_Diacritical_Marks.test │ ├── 00370_Greek_and_Coptic.test │ ├── 00400_Cyrillic.test │ ├── 01.test │ ├── 01E00_Latin_Extended_Additional.test │ ├── 01F00_Greek_Extended.test │ ├── 02.test │ ├── 02000_General_Punctuation.test │ ├── 02070_Superscripts_and_Subscripts.test │ ├── 020A0_Currency_Symbols.test │ ├── 020D0_Combining_Diacritical_Marks_for_Symbols.test │ ├── 02100_Letterlike_Symbols.test │ ├── 02150_Number_Forms.test │ ├── 02190_Arrows.test │ ├── 02200_Mathematical_Operators.test │ ├── 02300_Miscellaneous_Technical.test │ ├── 02400_Control_Pictures.test │ ├── 02440_Optical_Character_Recognition.test │ ├── 02460_Enclosed_Alphanumerics.test │ ├── 02500_Box_Drawing.test │ ├── 02580_Block_Elements.test │ ├── 025A0_Geometric_Shapes.test │ ├── 02600_Miscellaneous_Symbols.test │ ├── 02700_Dingbats.test │ ├── 027C0_Miscellaneous_Mathematical_Symbols-A.test │ ├── 027F0_Supplemental_Arrows-A.test │ ├── 02900_Supplemental_Arrows-B.test │ ├── 02980_Miscellaneous_Mathematical_Symbols-B.test │ ├── 02A00_Supplemental_Mathematical_Operators.test │ ├── 02B00_Miscellaneous_Symbols_and_Arrows.test │ ├── 03.test │ ├── 04.test │ ├── 05.test │ ├── 06.test │ ├── 07.test │ ├── 08.test │ ├── 09.test │ ├── 0FB00_Alphabetic_Presentation_Forms.test │ ├── 0FB50_Arabic_Presentation_Forms-A.test │ ├── 0FE00_Variation_Selectors.test │ ├── 0FE10_Vertical_Forms.test │ ├── 0FE20_Combining_Half_Marks.test │ ├── 0FE30_CJK_Compatibility_Forms.test │ ├── 0FE50_Small_Form_Variants.test │ ├── 0FE70_Arabic_Presentation_Forms-B.test │ ├── 10.test │ ├── 11.test │ ├── 12.test │ ├── 13.test │ ├── 14.test │ ├── 15.test │ ├── 16.test │ ├── 17.test │ ├── 18.test │ ├── 19.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-script.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_double-struck.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_fraktur.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_monospace.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_script.test │ ├── 20.test │ ├── 21.test │ ├── 22.test │ ├── 23.test │ ├── a.test │ ├── abs1.test │ ├── accents1.test │ ├── accents2.test │ ├── accents3.test │ ├── accents4.test │ ├── accents5.test │ ├── accents6.test │ ├── attribQuote1.test │ ├── axiom_of_power_set.test │ ├── b.test │ ├── badAttribs2.test │ ├── badAttribsGlyph4.test │ ├── badAttribsVal3.test │ ├── badEntity1.test │ ├── binomial_coefficient.test │ ├── boxed.test │ ├── c.test │ ├── chain2.test │ ├── choose.test │ ├── class2.test │ ├── clipboard1.test │ ├── clipboard2.test │ ├── complex1.test │ ├── complex2.test │ ├── complex3.test │ ├── complex_number.test │ ├── coprod2.test │ ├── cospan.test │ ├── d.test │ ├── deMorgans_law.test │ ├── differentiable_manifold.test │ ├── digamma.test │ ├── digit-bold.test │ ├── digit-double-struck.test │ ├── digit-monospace.test │ ├── digit-sans-serif-bold.test │ ├── digit-sans-serif.test │ ├── divergence.test │ ├── dotless.test │ ├── double-struck.test │ ├── doubleint1.test │ ├── e.test │ ├── embStretch1.test │ ├── emptyContent1.test │ ├── ensuremath.test │ ├── f.test │ ├── fraktur-bold.test │ ├── fraktur.test │ ├── g.test │ ├── genBvert1.test │ ├── genfrac.test │ ├── greek-bold-italic.test │ ├── greek-bold.test │ ├── greek-italic.test │ ├── greek-sans-serif-bold-italic.test │ ├── greek-sans-serif-bold.test │ ├── h.test │ ├── href1.test │ ├── href2.test │ ├── href3.test │ ├── i.test │ ├── int1.test │ ├── int4.test │ ├── int6.test │ ├── int7.test │ ├── int9.test │ ├── intDispStyle.test │ ├── intNested3.test │ ├── intSize1.test │ ├── intSize2.test │ ├── invChars.test │ ├── issue109.test │ ├── j.test │ ├── k.test │ ├── l.test │ ├── labels.test │ ├── largeop1.test │ ├── largeop2.test │ ├── largeopPos3.test │ ├── latin-bold-italic.test │ ├── latin-bold.test │ ├── latin-italic.test │ ├── latin-sans-serif-bold-italic.test │ ├── latin-sans-serif-bold.test │ ├── latin-sans-serif-italic.test │ ├── latin-sans-serif.test │ ├── m.test │ ├── m10.test │ ├── m100.test │ ├── m1000.test │ ├── macros.test │ ├── maction-01.test │ ├── maction-02.test │ ├── maction-03.test │ ├── maction-04.test │ ├── maction-05.test │ ├── maction-06.test │ ├── maction-07.test │ ├── maction-08.test │ ├── mactionBstatus1.test │ ├── mactionBtoggle1.test │ ├── mactionBtooltip1.test │ ├── maligngroup1.test │ ├── math-in-text.test │ ├── math3.test │ ├── mathAdisplay1.test │ ├── mathBevelledFrac.test │ ├── mathTable1.test │ ├── menclose.test │ ├── merrorB3.test │ ├── mfenced-01.test │ ├── mfenced-02.test │ ├── mfenced-03.test │ ├── mfenced-04.test │ ├── mfenced-05.test │ ├── mfenced-06.test │ ├── mfenced-07.test │ ├── mfenced-08.test │ ├── mfenced1.test │ ├── mfenced5.test │ ├── mfencedAdelims6.test │ ├── mfencedAempty.test │ ├── mfencedBfences7.test │ ├── mfencedBseparators8.test │ ├── mfencedSfonts9.test │ ├── mfrac-01.test │ ├── mfrac-02.test │ ├── mfrac-03.test │ ├── mfrac-04.test │ ├── mfrac-05.test │ ├── mfrac-06.test │ ├── mfrac-07.test │ ├── mfrac-08.test │ ├── mfrac-09.test │ ├── mfrac-10.test │ ├── mfrac-11.test │ ├── mfrac-12.test │ ├── mfrac1.test │ ├── mfrac2.test │ ├── mfrac3.test │ ├── mfrac4.test │ ├── mfrac7.test │ ├── mfracAcss8.test │ ├── mfracAmultiplier10.test │ ├── mfracBalign16.test │ ├── mfracBheight17.test │ ├── mfracBhoriz11.test │ ├── mfracBvert12.test │ ├── mfracSfonts13.test │ ├── mfracSinheritance14.test │ ├── mfracSscriptlevel15.test │ ├── mfracZcomp-01.test │ ├── mfracZcomp-02.test │ ├── mfracZcomp-03.test │ ├── mfracZcomp-04.test │ ├── mfracZcomp-05.test │ ├── mfracZcomp-06.test │ ├── mfracZcomp-07.test │ ├── mfracZcomp-08.test │ ├── mfracZcomp-09.test │ ├── mfracZcomp-10.test │ ├── mfracZcomp-11.test │ ├── mfracZcomp-12.test │ ├── mfracZcomp-13.test │ ├── mfracZcomp-14.test │ ├── mfracZcomp-15.test │ ├── mfracZcomp-16.test │ ├── mfracZcomp-17.test │ ├── mfracZcomp-18.test │ ├── mfracZcomp-19.test │ ├── mfracZcomp-20.test │ ├── mfracZcomp-21.test │ ├── mfracZcomp-22.test │ ├── mfracZcomp-23.test │ ├── mfracZcomp-24.test │ ├── mfracZcomp-25.test │ ├── mfracZcomp-26.test │ ├── mfracZcomp-28.test │ ├── mfracZcomp-29.test │ ├── mfracZcomp-30.test │ ├── mfracZcomp-31.test │ ├── mfracZcomp-32.test │ ├── mfracZcomp-33.test │ ├── mi1.test │ ├── mi2.test │ ├── mi3.test │ ├── mi4.test │ ├── miAtoken5.test │ ├── miSfonts8.test │ ├── miSfontsize9.test │ ├── miSmathsize16.test │ ├── miSmathsize17.test │ ├── miStoken10.test │ ├── mid1.test │ ├── mid2.test │ ├── miequivalents11.test │ ├── mifontstyle12.test │ ├── mimathvariant13.test │ ├── mimathvariant14.test │ ├── mlabeledtrAside2.test │ ├── mn1.test │ ├── mn2.test │ ├── mn3.test │ ├── mn4.test │ ├── mnAtoken6.test │ ├── mnAtoken7.test │ ├── mnSdisplaystyle9.test │ ├── mnSfont10.test │ ├── mnSscriptlevel11.test │ ├── mo1.test │ ├── mo2.test │ ├── mo3.test │ ├── mo6.test │ ├── mo7.test │ ├── moAaccent10.test │ ├── moAaccent9.test │ ├── moAform11.test │ ├── moAlargeop12.test │ ├── moAlrspace13.test │ ├── moAmovable15.test │ ├── moAprime16.test │ ├── moAsep17.test │ ├── moAstretchy18.test │ ├── moAsymmetric19.test │ ├── moSminmax20.test │ ├── monospace.test │ ├── moore_determinant.test │ ├── mover-01.test │ ├── mover-02.test │ ├── mover-03.test │ ├── mover-04.test │ ├── mover-05.test │ ├── mover-06.test │ ├── mover-07.test │ ├── mover-08.test │ ├── mover-09.test │ ├── mover-10.test │ ├── mover-11.test │ ├── mover-12.test │ ├── mover1.test │ ├── mover2.test │ ├── mover3.test │ ├── mover4.test │ ├── mover5.test │ ├── mover6.test │ ├── mover7.test │ ├── mover8.test │ ├── mover9.test │ ├── mphantomB1.test │ ├── mphantomBinferred2.test │ ├── mphantomBoperators3.test │ ├── mphantomSinheritance5.test │ ├── mrootB1.test │ ├── mrootSfonts3.test │ ├── mrootSscriptlevel4.test │ ├── mrow-01.test │ ├── mrow-02.test │ ├── mrowAbg4.test │ ├── mrowBinferred2.test │ ├── ms-13.test │ ├── ms-14.test │ ├── ms-15.test │ ├── ms-16.test │ ├── ms1.test │ ├── msAdisplaystyle2.test │ ├── msAquotes3.test │ ├── msAtoken4.test │ ├── msAtoken5.test │ ├── msSinheritance7.test │ ├── msSinheritance8.test │ ├── mspace-01.test │ ├── mspace-02.test │ ├── mspace-03.test │ ├── mspace-04.test │ ├── mspace1.test │ ├── mspace2.test │ ├── mspaceAbreak3.test │ ├── mspacestruts2.test │ ├── msqrt-01.test │ ├── msqrt-02.test │ ├── msqrt-03.test │ ├── msqrt-04.test │ ├── msqrt-05.test │ ├── msqrt-06.test │ ├── msqrt-07.test │ ├── msqrt-08.test │ ├── msqrt5.test │ ├── msqrtB7.test │ ├── msqrtBimplied8.test │ ├── msqrtSinheritance9.test │ ├── mstyle1.test │ ├── mstyleA2.test │ ├── mstyleAlinethick1.test │ ├── mstyleAminscript1.test │ ├── mstyleAscriptlevel1.test │ ├── msub-01.test │ ├── msub-02.test │ ├── msub-03.test │ ├── msub-04.test │ ├── msub-05.test │ ├── msub-06.test │ ├── msub-07.test │ ├── msub-08.test │ ├── msub-09.test │ ├── msub-10.test │ ├── msub-11.test │ ├── msub-12.test │ ├── msub1.test │ ├── msubsup-01.test │ ├── msubsup-02.test │ ├── msubsup-03.test │ ├── msubsup-04.test │ ├── msubsup-05.test │ ├── msubsup-06.test │ ├── msubsup-07.test │ ├── msubsup-08.test │ ├── msubsup-09.test │ ├── msubsup-10.test │ ├── msubsup-11.test │ ├── msubsup-12.test │ ├── msubsup1.test │ ├── msubsupBsize1.test │ ├── msubsupBsize2.test │ ├── msup-01.test │ ├── msup-02.test │ ├── msup-03.test │ ├── msup-04.test │ ├── msup-05.test │ ├── msup-06.test │ ├── msup-07.test │ ├── msup-08.test │ ├── msup-09.test │ ├── msup-10.test │ ├── msup-11.test │ ├── msup-12.test │ ├── msup1.test │ ├── msup2.test │ ├── msupBnest1.test │ ├── msupBsize1.test │ ├── msupBsize2.test │ ├── msupBsize3.test │ ├── msupSadvance1.test │ ├── mtable-01.test │ ├── mtable-05.test │ ├── mtable-07.test │ ├── mtable-08.test │ ├── mtable-09.test │ ├── mtable-10.test │ ├── mtable-11.test │ ├── mtable-16.test │ ├── mtable2.test │ ├── mtableAalign2.test │ ├── mtableAalign3.test │ ├── mtableAgroupalign.test │ ├── mtableAlines2.test │ ├── mtableAspacing4.test │ ├── mtableAwidth2.test │ ├── mtableAwidth3.test │ ├── mtableBgap1.test │ ├── mtableBsize2.test │ ├── mtableBspan3.test │ ├── mtext2.test │ ├── mtextAtoken3.test │ ├── mtextStoken6.test │ ├── mtextspaces7.test │ ├── munder-01.test │ ├── munder-02.test │ ├── munder-03.test │ ├── munder-04.test │ ├── munder-05.test │ ├── munder-06.test │ ├── munder-07.test │ ├── munder-08.test │ ├── munder-09.test │ ├── munder-10.test │ ├── munder-11.test │ ├── munder-12.test │ ├── munder1.test │ ├── munder2.test │ ├── munder3.test │ ├── munder4.test │ ├── munder5.test │ ├── munder6.test │ ├── munder7.test │ ├── munder8.test │ ├── munder9.test │ ├── munderover-01.test │ ├── munderover-02.test │ ├── munderover-03.test │ ├── munderover-04.test │ ├── munderover-05.test │ ├── munderover-06.test │ ├── munderover-07.test │ ├── munderover-08.test │ ├── munderover-09.test │ ├── munderover-10.test │ ├── munderover-11.test │ ├── munderover-12.test │ ├── n.test │ ├── nestAction1.test │ ├── nestFrac1.test │ ├── nestScript.test │ ├── nestTable1.test │ ├── nestedAwidth1.test │ ├── notin.test │ ├── o.test │ ├── oint1.test │ ├── operatorname.test │ ├── p.test │ ├── phantom.test │ ├── primes1.test │ ├── primes2.test │ ├── prod2.test │ ├── q.test │ ├── r.test │ ├── rec-mlabeledtr.test │ ├── rec-mtable1.test │ ├── rec3-mphantom-1.test │ ├── s.test │ ├── sans-serif-bold-italic.test │ ├── sans-serif-bold.test │ ├── sans-serif-italic.test │ ├── sans-serif.test │ ├── schwinger_dyson.test │ ├── script-bold.test │ ├── script.test │ ├── semantics-01.test │ ├── semantics-03.test │ ├── serif-bold-italic.test │ ├── serif-bold.test │ ├── serif-italic.test │ ├── serif.test │ ├── simplePres.test │ ├── simple_sum_formula.test │ ├── sizeunits3.test │ ├── sizeunits4.test │ ├── sophomores_dream.test │ ├── span.test │ ├── sphere_volume.test │ ├── stackrel.test │ ├── stretchAccents1.test │ ├── stretchAccents2.test │ ├── stretchBrack1.test │ ├── stretchHoriz1.test │ ├── stretchHoriz2.test │ ├── stretchHoriz3.test │ ├── stretchTable1.test │ ├── stretchTable2.test │ ├── stretchTilde1.test │ ├── stretchVert1.test │ ├── stretchVert2.test │ ├── stretchVertNest2.test │ ├── style1.test │ ├── style2.test │ ├── substack.test │ ├── subsup.test │ ├── sum1.test │ ├── t.test │ ├── text.test │ ├── tokens.test │ ├── tripleint2.test │ ├── u.test │ ├── unicode.test │ ├── v.test │ ├── verbar2.test │ ├── w.test │ ├── whBcomments1.test │ ├── whBgeneral1.test │ ├── white1.test │ ├── white10.test │ ├── white2.test │ ├── white3.test │ ├── white4.test │ ├── white5.test │ ├── white6.test │ ├── white7.test │ ├── white8.test │ ├── white9.test │ ├── x.test │ ├── xmllang1.test │ ├── y.test │ └── z.test │ ├── omml │ ├── 00000_C0_Controls_and_Basic_Latin.test │ ├── 00080_C1_Controls_and_Latin-1_Supplement.test │ ├── 00100_Latin_Extended-A.test │ ├── 00180_Latin_Extended-B.test │ ├── 00250_IPA_Extensions.test │ ├── 002B0_Spacing_Modifier_Letters.test │ ├── 00300_Combining_Diacritical_Marks.test │ ├── 00370_Greek_and_Coptic.test │ ├── 00400_Cyrillic.test │ ├── 01.test │ ├── 01E00_Latin_Extended_Additional.test │ ├── 01F00_Greek_Extended.test │ ├── 02.test │ ├── 02000_General_Punctuation.test │ ├── 02070_Superscripts_and_Subscripts.test │ ├── 020A0_Currency_Symbols.test │ ├── 020D0_Combining_Diacritical_Marks_for_Symbols.test │ ├── 02100_Letterlike_Symbols.test │ ├── 02150_Number_Forms.test │ ├── 02190_Arrows.test │ ├── 02200_Mathematical_Operators.test │ ├── 02300_Miscellaneous_Technical.test │ ├── 02400_Control_Pictures.test │ ├── 02440_Optical_Character_Recognition.test │ ├── 02460_Enclosed_Alphanumerics.test │ ├── 02500_Box_Drawing.test │ ├── 02580_Block_Elements.test │ ├── 025A0_Geometric_Shapes.test │ ├── 02600_Miscellaneous_Symbols.test │ ├── 02700_Dingbats.test │ ├── 027C0_Miscellaneous_Mathematical_Symbols-A.test │ ├── 027F0_Supplemental_Arrows-A.test │ ├── 02900_Supplemental_Arrows-B.test │ ├── 02980_Miscellaneous_Mathematical_Symbols-B.test │ ├── 02A00_Supplemental_Mathematical_Operators.test │ ├── 02B00_Miscellaneous_Symbols_and_Arrows.test │ ├── 03.test │ ├── 04.test │ ├── 05.test │ ├── 06.test │ ├── 07.test │ ├── 08.test │ ├── 09.test │ ├── 0FB00_Alphabetic_Presentation_Forms.test │ ├── 0FB50_Arabic_Presentation_Forms-A.test │ ├── 0FE00_Variation_Selectors.test │ ├── 0FE10_Vertical_Forms.test │ ├── 0FE20_Combining_Half_Marks.test │ ├── 0FE30_CJK_Compatibility_Forms.test │ ├── 0FE50_Small_Form_Variants.test │ ├── 0FE70_Arabic_Presentation_Forms-B.test │ ├── 10.test │ ├── 11.test │ ├── 12.test │ ├── 13.test │ ├── 14.test │ ├── 15.test │ ├── 16.test │ ├── 17.test │ ├── 18.test │ ├── 19.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-script.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_double-struck.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_fraktur.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_monospace.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_script.test │ ├── 20.test │ ├── 21.test │ ├── 22.test │ ├── 23.test │ ├── a.test │ ├── abs1.test │ ├── accents1.test │ ├── accents2.test │ ├── accents3.test │ ├── accents4.test │ ├── accents5.test │ ├── accents6.test │ ├── attribQuote1.test │ ├── axiom_of_power_set.test │ ├── b.test │ ├── badAttribs2.test │ ├── badAttribsGlyph4.test │ ├── badAttribsVal3.test │ ├── badEntity1.test │ ├── binomial_coefficient.test │ ├── boxed.test │ ├── c.test │ ├── cancel.test │ ├── chain2.test │ ├── choose.test │ ├── class2.test │ ├── clipboard1.test │ ├── clipboard2.test │ ├── complex1.test │ ├── complex2.test │ ├── complex3.test │ ├── complex_number.test │ ├── coprod2.test │ ├── cospan.test │ ├── d.test │ ├── deMorgans_law.test │ ├── differentiable_manifold.test │ ├── digamma.test │ ├── digit-bold.test │ ├── digit-double-struck.test │ ├── digit-monospace.test │ ├── digit-sans-serif-bold.test │ ├── digit-sans-serif.test │ ├── divergence.test │ ├── dotless.test │ ├── double-struck.test │ ├── doubleint1.test │ ├── e.test │ ├── embStretch1.test │ ├── emptyContent1.test │ ├── ensuremath.test │ ├── f.test │ ├── fraktur-bold.test │ ├── fraktur.test │ ├── g.test │ ├── genBvert1.test │ ├── genfrac.test │ ├── greek-bold-italic.test │ ├── greek-bold.test │ ├── greek-italic.test │ ├── greek-sans-serif-bold-italic.test │ ├── greek-sans-serif-bold.test │ ├── h.test │ ├── href1.test │ ├── href2.test │ ├── href3.test │ ├── i.test │ ├── int1.test │ ├── int4.test │ ├── int6.test │ ├── int7.test │ ├── int9.test │ ├── intDispStyle.test │ ├── intNested3.test │ ├── intSize1.test │ ├── intSize2.test │ ├── invChars.test │ ├── issue109.test │ ├── j.test │ ├── k.test │ ├── l.test │ ├── labels.test │ ├── largeop1.test │ ├── largeop2.test │ ├── largeopPos3.test │ ├── latin-bold-italic.test │ ├── latin-bold.test │ ├── latin-italic.test │ ├── latin-sans-serif-bold-italic.test │ ├── latin-sans-serif-bold.test │ ├── latin-sans-serif-italic.test │ ├── latin-sans-serif.test │ ├── m.test │ ├── m10.test │ ├── m100.test │ ├── m1000.test │ ├── macros.test │ ├── maction-01.test │ ├── maction-02.test │ ├── maction-03.test │ ├── maction-04.test │ ├── maction-05.test │ ├── maction-06.test │ ├── maction-07.test │ ├── maction-08.test │ ├── mactionBstatus1.test │ ├── mactionBtoggle1.test │ ├── mactionBtooltip1.test │ ├── maligngroup1.test │ ├── math-in-text.test │ ├── math3.test │ ├── mathAdisplay1.test │ ├── mathBevelledFrac.test │ ├── mathTable1.test │ ├── merrorB3.test │ ├── mfenced-01.test │ ├── mfenced-02.test │ ├── mfenced-03.test │ ├── mfenced-04.test │ ├── mfenced-05.test │ ├── mfenced-06.test │ ├── mfenced-07.test │ ├── mfenced-08.test │ ├── mfenced1.test │ ├── mfenced5.test │ ├── mfencedAdelims6.test │ ├── mfencedAempty.test │ ├── mfencedBfences7.test │ ├── mfencedBseparators8.test │ ├── mfencedSfonts9.test │ ├── mfrac-01.test │ ├── mfrac-02.test │ ├── mfrac-03.test │ ├── mfrac-04.test │ ├── mfrac-05.test │ ├── mfrac-06.test │ ├── mfrac-07.test │ ├── mfrac-08.test │ ├── mfrac-09.test │ ├── mfrac-10.test │ ├── mfrac-11.test │ ├── mfrac-12.test │ ├── mfrac1.test │ ├── mfrac2.test │ ├── mfrac3.test │ ├── mfrac4.test │ ├── mfrac7.test │ ├── mfracAcss8.test │ ├── mfracAmultiplier10.test │ ├── mfracBalign16.test │ ├── mfracBheight17.test │ ├── mfracBhoriz11.test │ ├── mfracBvert12.test │ ├── mfracSfonts13.test │ ├── mfracSinheritance14.test │ ├── mfracSscriptlevel15.test │ ├── mfracZcomp-01.test │ ├── mfracZcomp-02.test │ ├── mfracZcomp-03.test │ ├── mfracZcomp-04.test │ ├── mfracZcomp-05.test │ ├── mfracZcomp-06.test │ ├── mfracZcomp-07.test │ ├── mfracZcomp-08.test │ ├── mfracZcomp-09.test │ ├── mfracZcomp-10.test │ ├── mfracZcomp-11.test │ ├── mfracZcomp-12.test │ ├── mfracZcomp-13.test │ ├── mfracZcomp-14.test │ ├── mfracZcomp-15.test │ ├── mfracZcomp-16.test │ ├── mfracZcomp-17.test │ ├── mfracZcomp-18.test │ ├── mfracZcomp-19.test │ ├── mfracZcomp-20.test │ ├── mfracZcomp-21.test │ ├── mfracZcomp-22.test │ ├── mfracZcomp-23.test │ ├── mfracZcomp-24.test │ ├── mfracZcomp-25.test │ ├── mfracZcomp-26.test │ ├── mfracZcomp-28.test │ ├── mfracZcomp-29.test │ ├── mfracZcomp-30.test │ ├── mfracZcomp-31.test │ ├── mfracZcomp-32.test │ ├── mfracZcomp-33.test │ ├── mi1.test │ ├── mi2.test │ ├── mi3.test │ ├── mi4.test │ ├── miAtoken5.test │ ├── miSfonts8.test │ ├── miSfontsize9.test │ ├── miSmathsize16.test │ ├── miSmathsize17.test │ ├── miStoken10.test │ ├── mid1.test │ ├── mid2.test │ ├── miequivalents11.test │ ├── mifontstyle12.test │ ├── mimathvariant13.test │ ├── mimathvariant14.test │ ├── mlabeledtrAside2.test │ ├── mn1.test │ ├── mn2.test │ ├── mn3.test │ ├── mn4.test │ ├── mnAtoken6.test │ ├── mnAtoken7.test │ ├── mnSdisplaystyle9.test │ ├── mnSfont10.test │ ├── mnSscriptlevel11.test │ ├── mo1.test │ ├── mo2.test │ ├── mo3.test │ ├── mo6.test │ ├── mo7.test │ ├── moAaccent10.test │ ├── moAaccent9.test │ ├── moAform11.test │ ├── moAlargeop12.test │ ├── moAlrspace13.test │ ├── moAmovable15.test │ ├── moAprime16.test │ ├── moAsep17.test │ ├── moAstretchy18.test │ ├── moAsymmetric19.test │ ├── moSminmax20.test │ ├── monospace.test │ ├── moore_determinant.test │ ├── mover-01.test │ ├── mover-02.test │ ├── mover-03.test │ ├── mover-04.test │ ├── mover-05.test │ ├── mover-06.test │ ├── mover-07.test │ ├── mover-08.test │ ├── mover-09.test │ ├── mover-10.test │ ├── mover-11.test │ ├── mover-12.test │ ├── mover1.test │ ├── mover2.test │ ├── mover3.test │ ├── mover4.test │ ├── mover5.test │ ├── mover6.test │ ├── mover7.test │ ├── mover8.test │ ├── mover9.test │ ├── mphantomB1.test │ ├── mphantomBinferred2.test │ ├── mphantomBoperators3.test │ ├── mphantomSinheritance5.test │ ├── mrootB1.test │ ├── mrootSfonts3.test │ ├── mrootSscriptlevel4.test │ ├── mrow-01.test │ ├── mrow-02.test │ ├── mrowAbg4.test │ ├── mrowBinferred2.test │ ├── ms-13.test │ ├── ms-14.test │ ├── ms-15.test │ ├── ms-16.test │ ├── ms1.test │ ├── msAdisplaystyle2.test │ ├── msAquotes3.test │ ├── msAtoken4.test │ ├── msAtoken5.test │ ├── msSinheritance7.test │ ├── msSinheritance8.test │ ├── mspace-01.test │ ├── mspace-02.test │ ├── mspace-03.test │ ├── mspace-04.test │ ├── mspace1.test │ ├── mspace2.test │ ├── mspaceAbreak3.test │ ├── mspacestruts2.test │ ├── msqrt-01.test │ ├── msqrt-02.test │ ├── msqrt-03.test │ ├── msqrt-04.test │ ├── msqrt-05.test │ ├── msqrt-06.test │ ├── msqrt-07.test │ ├── msqrt-08.test │ ├── msqrt5.test │ ├── msqrtB7.test │ ├── msqrtBimplied8.test │ ├── msqrtSinheritance9.test │ ├── mstyle1.test │ ├── mstyleA2.test │ ├── mstyleAlinethick1.test │ ├── mstyleAminscript1.test │ ├── mstyleAscriptlevel1.test │ ├── msub-01.test │ ├── msub-02.test │ ├── msub-03.test │ ├── msub-04.test │ ├── msub-05.test │ ├── msub-06.test │ ├── msub-07.test │ ├── msub-08.test │ ├── msub-09.test │ ├── msub-10.test │ ├── msub-11.test │ ├── msub-12.test │ ├── msub1.test │ ├── msubsup-01.test │ ├── msubsup-02.test │ ├── msubsup-03.test │ ├── msubsup-04.test │ ├── msubsup-05.test │ ├── msubsup-06.test │ ├── msubsup-07.test │ ├── msubsup-08.test │ ├── msubsup-09.test │ ├── msubsup-10.test │ ├── msubsup-11.test │ ├── msubsup-12.test │ ├── msubsup1.test │ ├── msubsupBsize1.test │ ├── msubsupBsize2.test │ ├── msup-01.test │ ├── msup-02.test │ ├── msup-03.test │ ├── msup-04.test │ ├── msup-05.test │ ├── msup-06.test │ ├── msup-07.test │ ├── msup-08.test │ ├── msup-09.test │ ├── msup-10.test │ ├── msup-11.test │ ├── msup-12.test │ ├── msup1.test │ ├── msup2.test │ ├── msupBnest1.test │ ├── msupBsize1.test │ ├── msupBsize2.test │ ├── msupBsize3.test │ ├── msupSadvance1.test │ ├── mtable-01.test │ ├── mtable-05.test │ ├── mtable-07.test │ ├── mtable-08.test │ ├── mtable-09.test │ ├── mtable-10.test │ ├── mtable-11.test │ ├── mtable-16.test │ ├── mtable2.test │ ├── mtableAalign2.test │ ├── mtableAalign3.test │ ├── mtableAgroupalign.test │ ├── mtableAlines2.test │ ├── mtableAspacing4.test │ ├── mtableAwidth2.test │ ├── mtableAwidth3.test │ ├── mtableBgap1.test │ ├── mtableBsize2.test │ ├── mtableBspan3.test │ ├── mtext2.test │ ├── mtextAtoken3.test │ ├── mtextStoken6.test │ ├── mtextspaces7.test │ ├── munder-01.test │ ├── munder-02.test │ ├── munder-03.test │ ├── munder-04.test │ ├── munder-05.test │ ├── munder-06.test │ ├── munder-07.test │ ├── munder-08.test │ ├── munder-09.test │ ├── munder-10.test │ ├── munder-11.test │ ├── munder-12.test │ ├── munder1.test │ ├── munder2.test │ ├── munder3.test │ ├── munder4.test │ ├── munder5.test │ ├── munder6.test │ ├── munder7.test │ ├── munder8.test │ ├── munder9.test │ ├── munderover-01.test │ ├── munderover-02.test │ ├── munderover-03.test │ ├── munderover-04.test │ ├── munderover-05.test │ ├── munderover-06.test │ ├── munderover-07.test │ ├── munderover-08.test │ ├── munderover-09.test │ ├── munderover-10.test │ ├── munderover-11.test │ ├── munderover-12.test │ ├── n.test │ ├── nestAction1.test │ ├── nestFrac1.test │ ├── nestScript.test │ ├── nestTable1.test │ ├── nestedAwidth1.test │ ├── notin.test │ ├── o.test │ ├── oint1.test │ ├── operatorname.test │ ├── p.test │ ├── phantom.test │ ├── primes1.test │ ├── primes2.test │ ├── prod2.test │ ├── q.test │ ├── r.test │ ├── rec-mlabeledtr.test │ ├── rec-mtable1.test │ ├── rec3-mphantom-1.test │ ├── s.test │ ├── sans-serif-bold-italic.test │ ├── sans-serif-bold.test │ ├── sans-serif-italic.test │ ├── sans-serif.test │ ├── schwinger_dyson.test │ ├── script-bold.test │ ├── script.test │ ├── semantics-01.test │ ├── semantics-03.test │ ├── serif-bold-italic.test │ ├── serif-bold.test │ ├── serif-italic.test │ ├── serif.test │ ├── simplePres.test │ ├── simple_sum_formula.test │ ├── sizeunits3.test │ ├── sizeunits4.test │ ├── sophomores_dream.test │ ├── span.test │ ├── sphere_volume.test │ ├── stackrel.test │ ├── stretchAccents1.test │ ├── stretchAccents2.test │ ├── stretchBrack1.test │ ├── stretchHoriz1.test │ ├── stretchHoriz2.test │ ├── stretchHoriz3.test │ ├── stretchTable1.test │ ├── stretchTable2.test │ ├── stretchTilde1.test │ ├── stretchVert1.test │ ├── stretchVert2.test │ ├── stretchVertNest2.test │ ├── style1.test │ ├── style2.test │ ├── substack.test │ ├── subsup.test │ ├── sum1.test │ ├── t.test │ ├── text.test │ ├── tokens.test │ ├── tripleint2.test │ ├── u.test │ ├── unicode.test │ ├── v.test │ ├── verbar2.test │ ├── w.test │ ├── whBcomments1.test │ ├── whBgeneral1.test │ ├── white1.test │ ├── white10.test │ ├── white2.test │ ├── white3.test │ ├── white4.test │ ├── white5.test │ ├── white6.test │ ├── white7.test │ ├── white8.test │ ├── white9.test │ ├── x.test │ ├── xmllang1.test │ ├── y.test │ └── z.test │ ├── tex │ ├── 00000_C0_Controls_and_Basic_Latin.test │ ├── 00080_C1_Controls_and_Latin-1_Supplement.test │ ├── 00100_Latin_Extended-A.test │ ├── 00180_Latin_Extended-B.test │ ├── 00250_IPA_Extensions.test │ ├── 002B0_Spacing_Modifier_Letters.test │ ├── 00300_Combining_Diacritical_Marks.test │ ├── 00370_Greek_and_Coptic.test │ ├── 00400_Cyrillic.test │ ├── 01.test │ ├── 01E00_Latin_Extended_Additional.test │ ├── 01F00_Greek_Extended.test │ ├── 02.test │ ├── 02000_General_Punctuation.test │ ├── 02070_Superscripts_and_Subscripts.test │ ├── 020A0_Currency_Symbols.test │ ├── 020D0_Combining_Diacritical_Marks_for_Symbols.test │ ├── 02100_Letterlike_Symbols.test │ ├── 02150_Number_Forms.test │ ├── 02190_Arrows.test │ ├── 02200_Mathematical_Operators.test │ ├── 02300_Miscellaneous_Technical.test │ ├── 02400_Control_Pictures.test │ ├── 02440_Optical_Character_Recognition.test │ ├── 02460_Enclosed_Alphanumerics.test │ ├── 02500_Box_Drawing.test │ ├── 02580_Block_Elements.test │ ├── 025A0_Geometric_Shapes.test │ ├── 02600_Miscellaneous_Symbols.test │ ├── 02700_Dingbats.test │ ├── 027C0_Miscellaneous_Mathematical_Symbols-A.test │ ├── 027F0_Supplemental_Arrows-A.test │ ├── 02900_Supplemental_Arrows-B.test │ ├── 02980_Miscellaneous_Mathematical_Symbols-B.test │ ├── 02A00_Supplemental_Mathematical_Operators.test │ ├── 02B00_Miscellaneous_Symbols_and_Arrows.test │ ├── 03.test │ ├── 04.test │ ├── 05.test │ ├── 06.test │ ├── 07.test │ ├── 08.test │ ├── 09.test │ ├── 0FB00_Alphabetic_Presentation_Forms.test │ ├── 0FB50_Arabic_Presentation_Forms-A.test │ ├── 0FE00_Variation_Selectors.test │ ├── 0FE10_Vertical_Forms.test │ ├── 0FE20_Combining_Half_Marks.test │ ├── 0FE30_CJK_Compatibility_Forms.test │ ├── 0FE50_Small_Form_Variants.test │ ├── 0FE70_Arabic_Presentation_Forms-B.test │ ├── 10.test │ ├── 11.test │ ├── 12.test │ ├── 13.test │ ├── 14.test │ ├── 15.test │ ├── 16.test │ ├── 17.test │ ├── 18.test │ ├── 19.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold-script.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_bold.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_double-struck.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_fraktur.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_monospace.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test │ ├── 1D400_Mathematical_Alphanumeric_Symbols_script.test │ ├── 20.test │ ├── 21.test │ ├── 22.test │ ├── 23.test │ ├── a.test │ ├── abs1.test │ ├── accents1.test │ ├── accents2.test │ ├── accents3.test │ ├── accents4.test │ ├── accents5.test │ ├── accents6.test │ ├── attribQuote1.test │ ├── axiom_of_power_set.test │ ├── b.test │ ├── badAttribs2.test │ ├── badAttribsGlyph4.test │ ├── badAttribsVal3.test │ ├── badEntity1.test │ ├── binomial_coefficient.test │ ├── boxed.test │ ├── c.test │ ├── cancel.test │ ├── chain2.test │ ├── choose.test │ ├── class2.test │ ├── clipboard1.test │ ├── clipboard2.test │ ├── complex1.test │ ├── complex2.test │ ├── complex3.test │ ├── complex_number.test │ ├── coprod2.test │ ├── cospan.test │ ├── d.test │ ├── deMorgans_law.test │ ├── differentiable_manifold.test │ ├── digamma.test │ ├── digit-bold.test │ ├── digit-double-struck.test │ ├── digit-monospace.test │ ├── digit-sans-serif-bold.test │ ├── digit-sans-serif.test │ ├── divergence.test │ ├── dotless.test │ ├── double-struck.test │ ├── doubleint1.test │ ├── e.test │ ├── embStretch1.test │ ├── emptyContent1.test │ ├── ensuremath.test │ ├── f.test │ ├── fraktur-bold.test │ ├── fraktur.test │ ├── g.test │ ├── genBvert1.test │ ├── genfrac.test │ ├── greek-bold-italic.test │ ├── greek-bold.test │ ├── greek-italic.test │ ├── greek-sans-serif-bold-italic.test │ ├── greek-sans-serif-bold.test │ ├── h.test │ ├── href1.test │ ├── href2.test │ ├── href3.test │ ├── i.test │ ├── int1.test │ ├── int4.test │ ├── int6.test │ ├── int7.test │ ├── int9.test │ ├── intDispStyle.test │ ├── intNested3.test │ ├── intSize1.test │ ├── intSize2.test │ ├── invChars.test │ ├── issue109.test │ ├── j.test │ ├── k.test │ ├── l.test │ ├── labels.test │ ├── largeop1.test │ ├── largeop2.test │ ├── largeopPos3.test │ ├── latin-bold-italic.test │ ├── latin-bold.test │ ├── latin-italic.test │ ├── latin-sans-serif-bold-italic.test │ ├── latin-sans-serif-bold.test │ ├── latin-sans-serif-italic.test │ ├── latin-sans-serif.test │ ├── m.test │ ├── m10.test │ ├── m100.test │ ├── m1000.test │ ├── macros.test │ ├── maction-01.test │ ├── maction-02.test │ ├── maction-03.test │ ├── maction-04.test │ ├── maction-05.test │ ├── maction-06.test │ ├── maction-07.test │ ├── maction-08.test │ ├── mactionBstatus1.test │ ├── mactionBtoggle1.test │ ├── mactionBtooltip1.test │ ├── maligngroup1.test │ ├── math-in-text.test │ ├── math3.test │ ├── mathAdisplay1.test │ ├── mathBevelledFrac.test │ ├── mathTable1.test │ ├── merrorB3.test │ ├── mfenced-01.test │ ├── mfenced-02.test │ ├── mfenced-03.test │ ├── mfenced-04.test │ ├── mfenced-05.test │ ├── mfenced-06.test │ ├── mfenced-07.test │ ├── mfenced-08.test │ ├── mfenced1.test │ ├── mfenced5.test │ ├── mfencedAdelims6.test │ ├── mfencedAempty.test │ ├── mfencedBfences7.test │ ├── mfencedBseparators8.test │ ├── mfencedSfonts9.test │ ├── mfrac-01.test │ ├── mfrac-02.test │ ├── mfrac-03.test │ ├── mfrac-04.test │ ├── mfrac-05.test │ ├── mfrac-06.test │ ├── mfrac-07.test │ ├── mfrac-08.test │ ├── mfrac-09.test │ ├── mfrac-10.test │ ├── mfrac-11.test │ ├── mfrac-12.test │ ├── mfrac1.test │ ├── mfrac2.test │ ├── mfrac3.test │ ├── mfrac4.test │ ├── mfrac7.test │ ├── mfracAcss8.test │ ├── mfracAmultiplier10.test │ ├── mfracBalign16.test │ ├── mfracBheight17.test │ ├── mfracBhoriz11.test │ ├── mfracBvert12.test │ ├── mfracSfonts13.test │ ├── mfracSinheritance14.test │ ├── mfracSscriptlevel15.test │ ├── mfracZcomp-01.test │ ├── mfracZcomp-02.test │ ├── mfracZcomp-03.test │ ├── mfracZcomp-04.test │ ├── mfracZcomp-05.test │ ├── mfracZcomp-06.test │ ├── mfracZcomp-07.test │ ├── mfracZcomp-08.test │ ├── mfracZcomp-09.test │ ├── mfracZcomp-10.test │ ├── mfracZcomp-11.test │ ├── mfracZcomp-12.test │ ├── mfracZcomp-13.test │ ├── mfracZcomp-14.test │ ├── mfracZcomp-15.test │ ├── mfracZcomp-16.test │ ├── mfracZcomp-17.test │ ├── mfracZcomp-18.test │ ├── mfracZcomp-19.test │ ├── mfracZcomp-20.test │ ├── mfracZcomp-21.test │ ├── mfracZcomp-22.test │ ├── mfracZcomp-23.test │ ├── mfracZcomp-24.test │ ├── mfracZcomp-25.test │ ├── mfracZcomp-26.test │ ├── mfracZcomp-28.test │ ├── mfracZcomp-29.test │ ├── mfracZcomp-30.test │ ├── mfracZcomp-31.test │ ├── mfracZcomp-32.test │ ├── mfracZcomp-33.test │ ├── mi1.test │ ├── mi2.test │ ├── mi3.test │ ├── mi4.test │ ├── miAtoken5.test │ ├── miSfonts8.test │ ├── miSfontsize9.test │ ├── miSmathsize16.test │ ├── miSmathsize17.test │ ├── miStoken10.test │ ├── mid1.test │ ├── mid2.test │ ├── miequivalents11.test │ ├── mifontstyle12.test │ ├── mimathvariant13.test │ ├── mimathvariant14.test │ ├── mlabeledtrAside2.test │ ├── mn1.test │ ├── mn2.test │ ├── mn3.test │ ├── mn4.test │ ├── mnAtoken6.test │ ├── mnAtoken7.test │ ├── mnSdisplaystyle9.test │ ├── mnSfont10.test │ ├── mnSscriptlevel11.test │ ├── mo1.test │ ├── mo2.test │ ├── mo3.test │ ├── mo6.test │ ├── mo7.test │ ├── moAaccent10.test │ ├── moAaccent9.test │ ├── moAform11.test │ ├── moAlargeop12.test │ ├── moAlrspace13.test │ ├── moAmovable15.test │ ├── moAprime16.test │ ├── moAsep17.test │ ├── moAstretchy18.test │ ├── moAsymmetric19.test │ ├── moSminmax20.test │ ├── monospace.test │ ├── moore_determinant.test │ ├── mover-01.test │ ├── mover-02.test │ ├── mover-03.test │ ├── mover-04.test │ ├── mover-05.test │ ├── mover-06.test │ ├── mover-07.test │ ├── mover-08.test │ ├── mover-09.test │ ├── mover-10.test │ ├── mover-11.test │ ├── mover-12.test │ ├── mover1.test │ ├── mover2.test │ ├── mover3.test │ ├── mover4.test │ ├── mover5.test │ ├── mover6.test │ ├── mover7.test │ ├── mover8.test │ ├── mover9.test │ ├── mphantomB1.test │ ├── mphantomBinferred2.test │ ├── mphantomBoperators3.test │ ├── mphantomSinheritance5.test │ ├── mrootB1.test │ ├── mrootSfonts3.test │ ├── mrootSscriptlevel4.test │ ├── mrow-01.test │ ├── mrow-02.test │ ├── mrowAbg4.test │ ├── mrowBinferred2.test │ ├── ms-13.test │ ├── ms-14.test │ ├── ms-15.test │ ├── ms-16.test │ ├── ms1.test │ ├── msAdisplaystyle2.test │ ├── msAquotes3.test │ ├── msAtoken4.test │ ├── msAtoken5.test │ ├── msSinheritance7.test │ ├── msSinheritance8.test │ ├── mspace-01.test │ ├── mspace-02.test │ ├── mspace-03.test │ ├── mspace-04.test │ ├── mspace1.test │ ├── mspace2.test │ ├── mspaceAbreak3.test │ ├── mspacestruts2.test │ ├── msqrt-01.test │ ├── msqrt-02.test │ ├── msqrt-03.test │ ├── msqrt-04.test │ ├── msqrt-05.test │ ├── msqrt-06.test │ ├── msqrt-07.test │ ├── msqrt-08.test │ ├── msqrt5.test │ ├── msqrtB7.test │ ├── msqrtBimplied8.test │ ├── msqrtSinheritance9.test │ ├── mstyle1.test │ ├── mstyleA2.test │ ├── mstyleAlinethick1.test │ ├── mstyleAminscript1.test │ ├── mstyleAscriptlevel1.test │ ├── msub-01.test │ ├── msub-02.test │ ├── msub-03.test │ ├── msub-04.test │ ├── msub-05.test │ ├── msub-06.test │ ├── msub-07.test │ ├── msub-08.test │ ├── msub-09.test │ ├── msub-10.test │ ├── msub-11.test │ ├── msub-12.test │ ├── msub1.test │ ├── msubsup-01.test │ ├── msubsup-02.test │ ├── msubsup-03.test │ ├── msubsup-04.test │ ├── msubsup-05.test │ ├── msubsup-06.test │ ├── msubsup-07.test │ ├── msubsup-08.test │ ├── msubsup-09.test │ ├── msubsup-10.test │ ├── msubsup-11.test │ ├── msubsup-12.test │ ├── msubsup1.test │ ├── msubsupBsize1.test │ ├── msubsupBsize2.test │ ├── msup-01.test │ ├── msup-02.test │ ├── msup-03.test │ ├── msup-04.test │ ├── msup-05.test │ ├── msup-06.test │ ├── msup-07.test │ ├── msup-08.test │ ├── msup-09.test │ ├── msup-10.test │ ├── msup-11.test │ ├── msup-12.test │ ├── msup1.test │ ├── msup2.test │ ├── msupBnest1.test │ ├── msupBsize1.test │ ├── msupBsize2.test │ ├── msupBsize3.test │ ├── msupSadvance1.test │ ├── mtable-01.test │ ├── mtable-05.test │ ├── mtable-07.test │ ├── mtable-08.test │ ├── mtable-09.test │ ├── mtable-10.test │ ├── mtable-11.test │ ├── mtable-16.test │ ├── mtable2.test │ ├── mtableAalign2.test │ ├── mtableAalign3.test │ ├── mtableAgroupalign.test │ ├── mtableAlines2.test │ ├── mtableAspacing4.test │ ├── mtableAwidth2.test │ ├── mtableAwidth3.test │ ├── mtableBgap1.test │ ├── mtableBsize2.test │ ├── mtableBspan3.test │ ├── mtext2.test │ ├── mtextAtoken3.test │ ├── mtextStoken6.test │ ├── mtextspaces7.test │ ├── munder-01.test │ ├── munder-02.test │ ├── munder-03.test │ ├── munder-04.test │ ├── munder-05.test │ ├── munder-06.test │ ├── munder-07.test │ ├── munder-08.test │ ├── munder-09.test │ ├── munder-10.test │ ├── munder-11.test │ ├── munder-12.test │ ├── munder1.test │ ├── munder2.test │ ├── munder3.test │ ├── munder4.test │ ├── munder5.test │ ├── munder6.test │ ├── munder7.test │ ├── munder8.test │ ├── munder9.test │ ├── munderover-01.test │ ├── munderover-02.test │ ├── munderover-03.test │ ├── munderover-04.test │ ├── munderover-05.test │ ├── munderover-06.test │ ├── munderover-07.test │ ├── munderover-08.test │ ├── munderover-09.test │ ├── munderover-10.test │ ├── munderover-11.test │ ├── munderover-12.test │ ├── n.test │ ├── nestAction1.test │ ├── nestFrac1.test │ ├── nestScript.test │ ├── nestTable1.test │ ├── nestedAwidth1.test │ ├── notin.test │ ├── o.test │ ├── oint1.test │ ├── operatorname.test │ ├── p.test │ ├── phantom.test │ ├── primes1.test │ ├── primes2.test │ ├── prod2.test │ ├── q.test │ ├── r.test │ ├── rec-mlabeledtr.test │ ├── rec-mtable1.test │ ├── rec3-mphantom-1.test │ ├── s.test │ ├── sans-serif-bold-italic.test │ ├── sans-serif-bold.test │ ├── sans-serif-italic.test │ ├── sans-serif.test │ ├── schwinger_dyson.test │ ├── script-bold.test │ ├── script.test │ ├── semantics-01.test │ ├── semantics-03.test │ ├── serif-bold-italic.test │ ├── serif-bold.test │ ├── serif-italic.test │ ├── serif.test │ ├── simplePres.test │ ├── simple_sum_formula.test │ ├── sizeunits3.test │ ├── sizeunits4.test │ ├── sophomores_dream.test │ ├── span.test │ ├── sphere_volume.test │ ├── stackrel.test │ ├── stretchAccents1.test │ ├── stretchAccents2.test │ ├── stretchBrack1.test │ ├── stretchHoriz1.test │ ├── stretchHoriz2.test │ ├── stretchHoriz3.test │ ├── stretchTable1.test │ ├── stretchTable2.test │ ├── stretchTilde1.test │ ├── stretchVert1.test │ ├── stretchVert2.test │ ├── stretchVertNest2.test │ ├── style1.test │ ├── style2.test │ ├── substack.test │ ├── subsup.test │ ├── sum1.test │ ├── t.test │ ├── text.test │ ├── tokens.test │ ├── tripleint2.test │ ├── u.test │ ├── unicode.test │ ├── v.test │ ├── verbar2.test │ ├── w.test │ ├── whBcomments1.test │ ├── whBgeneral1.test │ ├── white1.test │ ├── white10.test │ ├── white2.test │ ├── white3.test │ ├── white4.test │ ├── white5.test │ ├── white6.test │ ├── white7.test │ ├── white8.test │ ├── white9.test │ ├── x.test │ ├── xmllang1.test │ ├── y.test │ └── z.test │ └── typst │ ├── 01.test │ ├── 02.test │ ├── 03.test │ ├── 04.test │ ├── 05.test │ ├── 06.test │ ├── 07.test │ ├── 08.test │ ├── 09.test │ ├── 10.test │ ├── 11.test │ ├── 12.test │ ├── 13.test │ ├── 14.test │ ├── 15.test │ ├── 16.test │ ├── 17.test │ ├── 18.test │ ├── 19.test │ ├── 20.test │ ├── 21.test │ ├── 22.test │ ├── 23.test │ ├── abs1.test │ ├── axiom_of_power_set.test │ ├── binomial_coefficient.test │ ├── boxed.test │ ├── cancel.test │ ├── chain2.test │ ├── choose.test │ ├── complex1.test │ ├── complex2.test │ ├── complex_number.test │ ├── coprod2.test │ ├── cospan.test │ ├── deMorgans_law.test │ ├── differentiable_manifold.test │ ├── divergence.test │ ├── double-struck.test │ ├── doubleint1.test │ ├── genfrac.test │ ├── largeop1.test │ ├── largeopPos3.test │ ├── math-in-text.test │ ├── moore_determinant.test │ ├── nestFrac1.test │ ├── nestScript.test │ ├── nestedAwidth1.test │ ├── notin.test │ ├── oint1.test │ ├── operatorname.test │ ├── phantom.test │ ├── primes1.test │ ├── primes2.test │ ├── prod2.test │ ├── schwinger_dyson.test │ ├── simple_sum_formula.test │ ├── sophomores_dream.test │ ├── span.test │ ├── sphere_volume.test │ ├── stackrel.test │ ├── substack.test │ ├── subsup.test │ ├── sum1.test │ ├── text.test │ ├── tripleint2.test │ ├── unicode.test │ └── verbar2.test └── texmath.cabal /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [jgm] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/Makefile -------------------------------------------------------------------------------- /OMML-BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/OMML-BUGS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/README.md -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/Setup.lhs -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- 1 | packages: . 2 | flags: +executable +server 3 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/changelog.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/default.nix -------------------------------------------------------------------------------- /extra/texmath.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/extra/texmath.hs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/flake.nix -------------------------------------------------------------------------------- /lib/mmldict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/lib/mmldict/Makefile -------------------------------------------------------------------------------- /lib/totexmath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/lib/totexmath/Makefile -------------------------------------------------------------------------------- /lib/tounicode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/lib/tounicode/Makefile -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/man1/texmath.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/man/man1/texmath.1 -------------------------------------------------------------------------------- /man/texmath.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/man/texmath.1.md -------------------------------------------------------------------------------- /math-template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/math-template.docx -------------------------------------------------------------------------------- /mathml2omml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/mathml2omml -------------------------------------------------------------------------------- /omml2docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/omml2docx -------------------------------------------------------------------------------- /server/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/server/Main.hs -------------------------------------------------------------------------------- /server/texmath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/server/texmath.html -------------------------------------------------------------------------------- /src/Text/TeXMath.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/src/Text/TeXMath.hs -------------------------------------------------------------------------------- /src/Text/TeXMath/Shared.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/src/Text/TeXMath/Shared.hs -------------------------------------------------------------------------------- /src/Text/TeXMath/TeX.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/src/Text/TeXMath/TeX.hs -------------------------------------------------------------------------------- /src/Text/TeXMath/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/src/Text/TeXMath/Types.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/reader/mml/a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/a.test -------------------------------------------------------------------------------- /test/reader/mml/abs1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/abs1.test -------------------------------------------------------------------------------- /test/reader/mml/abs2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/abs2.test -------------------------------------------------------------------------------- /test/reader/mml/b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/b.test -------------------------------------------------------------------------------- /test/reader/mml/badTag1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/badTag1.test -------------------------------------------------------------------------------- /test/reader/mml/c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/c.test -------------------------------------------------------------------------------- /test/reader/mml/chain1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/chain1.test -------------------------------------------------------------------------------- /test/reader/mml/chain2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/chain2.test -------------------------------------------------------------------------------- /test/reader/mml/class1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/class1.test -------------------------------------------------------------------------------- /test/reader/mml/class2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/class2.test -------------------------------------------------------------------------------- /test/reader/mml/coprod1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/coprod1.test -------------------------------------------------------------------------------- /test/reader/mml/coprod2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/coprod2.test -------------------------------------------------------------------------------- /test/reader/mml/d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/d.test -------------------------------------------------------------------------------- /test/reader/mml/digamma.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/digamma.test -------------------------------------------------------------------------------- /test/reader/mml/dotless.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/dotless.test -------------------------------------------------------------------------------- /test/reader/mml/e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/e.test -------------------------------------------------------------------------------- /test/reader/mml/f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/f.test -------------------------------------------------------------------------------- /test/reader/mml/fraktur.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/fraktur.test -------------------------------------------------------------------------------- /test/reader/mml/g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/g.test -------------------------------------------------------------------------------- /test/reader/mml/h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/h.test -------------------------------------------------------------------------------- /test/reader/mml/href1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/href1.test -------------------------------------------------------------------------------- /test/reader/mml/href2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/href2.test -------------------------------------------------------------------------------- /test/reader/mml/href3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/href3.test -------------------------------------------------------------------------------- /test/reader/mml/i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/i.test -------------------------------------------------------------------------------- /test/reader/mml/id1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/id1.test -------------------------------------------------------------------------------- /test/reader/mml/int1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int1.test -------------------------------------------------------------------------------- /test/reader/mml/int10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int10.test -------------------------------------------------------------------------------- /test/reader/mml/int2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int2.test -------------------------------------------------------------------------------- /test/reader/mml/int3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int3.test -------------------------------------------------------------------------------- /test/reader/mml/int4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int4.test -------------------------------------------------------------------------------- /test/reader/mml/int5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int5.test -------------------------------------------------------------------------------- /test/reader/mml/int6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int6.test -------------------------------------------------------------------------------- /test/reader/mml/int7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int7.test -------------------------------------------------------------------------------- /test/reader/mml/int8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int8.test -------------------------------------------------------------------------------- /test/reader/mml/int9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/int9.test -------------------------------------------------------------------------------- /test/reader/mml/j.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/j.test -------------------------------------------------------------------------------- /test/reader/mml/k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/k.test -------------------------------------------------------------------------------- /test/reader/mml/l.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/l.test -------------------------------------------------------------------------------- /test/reader/mml/m.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/m.test -------------------------------------------------------------------------------- /test/reader/mml/m10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/m10.test -------------------------------------------------------------------------------- /test/reader/mml/m100.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/m100.test -------------------------------------------------------------------------------- /test/reader/mml/m1000.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/m1000.test -------------------------------------------------------------------------------- /test/reader/mml/math1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/math1.test -------------------------------------------------------------------------------- /test/reader/mml/math3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/math3.test -------------------------------------------------------------------------------- /test/reader/mml/mathDir.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mathDir.test -------------------------------------------------------------------------------- /test/reader/mml/merror1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/merror1.test -------------------------------------------------------------------------------- /test/reader/mml/mfrac1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mfrac1.test -------------------------------------------------------------------------------- /test/reader/mml/mfrac2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mfrac2.test -------------------------------------------------------------------------------- /test/reader/mml/mfrac3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mfrac3.test -------------------------------------------------------------------------------- /test/reader/mml/mfrac4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mfrac4.test -------------------------------------------------------------------------------- /test/reader/mml/mfrac7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mfrac7.test -------------------------------------------------------------------------------- /test/reader/mml/mi1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mi1.test -------------------------------------------------------------------------------- /test/reader/mml/mi2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mi2.test -------------------------------------------------------------------------------- /test/reader/mml/mi3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mi3.test -------------------------------------------------------------------------------- /test/reader/mml/mi4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mi4.test -------------------------------------------------------------------------------- /test/reader/mml/mid1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mid1.test -------------------------------------------------------------------------------- /test/reader/mml/mid2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mid2.test -------------------------------------------------------------------------------- /test/reader/mml/mn1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mn1.test -------------------------------------------------------------------------------- /test/reader/mml/mn2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mn2.test -------------------------------------------------------------------------------- /test/reader/mml/mn3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mn3.test -------------------------------------------------------------------------------- /test/reader/mml/mn4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mn4.test -------------------------------------------------------------------------------- /test/reader/mml/mo1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mo1.test -------------------------------------------------------------------------------- /test/reader/mml/mo2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mo2.test -------------------------------------------------------------------------------- /test/reader/mml/mo3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mo3.test -------------------------------------------------------------------------------- /test/reader/mml/mo4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mo4.test -------------------------------------------------------------------------------- /test/reader/mml/mo5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mo5.test -------------------------------------------------------------------------------- /test/reader/mml/mo6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mo6.test -------------------------------------------------------------------------------- /test/reader/mml/mo7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mo7.test -------------------------------------------------------------------------------- /test/reader/mml/mo8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mo8.test -------------------------------------------------------------------------------- /test/reader/mml/mover1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover1.test -------------------------------------------------------------------------------- /test/reader/mml/mover2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover2.test -------------------------------------------------------------------------------- /test/reader/mml/mover3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover3.test -------------------------------------------------------------------------------- /test/reader/mml/mover4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover4.test -------------------------------------------------------------------------------- /test/reader/mml/mover5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover5.test -------------------------------------------------------------------------------- /test/reader/mml/mover6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover6.test -------------------------------------------------------------------------------- /test/reader/mml/mover7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover7.test -------------------------------------------------------------------------------- /test/reader/mml/mover8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover8.test -------------------------------------------------------------------------------- /test/reader/mml/mover9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mover9.test -------------------------------------------------------------------------------- /test/reader/mml/mrootB1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mrootB1.test -------------------------------------------------------------------------------- /test/reader/mml/mrow-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mrow-01.test -------------------------------------------------------------------------------- /test/reader/mml/mrow-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mrow-02.test -------------------------------------------------------------------------------- /test/reader/mml/mrow1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mrow1.test -------------------------------------------------------------------------------- /test/reader/mml/ms-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/ms-11.test -------------------------------------------------------------------------------- /test/reader/mml/ms-12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/ms-12.test -------------------------------------------------------------------------------- /test/reader/mml/ms-13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/ms-13.test -------------------------------------------------------------------------------- /test/reader/mml/ms-14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/ms-14.test -------------------------------------------------------------------------------- /test/reader/mml/ms-15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/ms-15.test -------------------------------------------------------------------------------- /test/reader/mml/ms-16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/ms-16.test -------------------------------------------------------------------------------- /test/reader/mml/ms1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/ms1.test -------------------------------------------------------------------------------- /test/reader/mml/mspace1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mspace1.test -------------------------------------------------------------------------------- /test/reader/mml/mspace2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mspace2.test -------------------------------------------------------------------------------- /test/reader/mml/msqrt5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msqrt5.test -------------------------------------------------------------------------------- /test/reader/mml/msqrt6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msqrt6.test -------------------------------------------------------------------------------- /test/reader/mml/msqrtB7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msqrtB7.test -------------------------------------------------------------------------------- /test/reader/mml/mstyle1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mstyle1.test -------------------------------------------------------------------------------- /test/reader/mml/msub-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-01.test -------------------------------------------------------------------------------- /test/reader/mml/msub-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-02.test -------------------------------------------------------------------------------- /test/reader/mml/msub-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-03.test -------------------------------------------------------------------------------- /test/reader/mml/msub-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-04.test -------------------------------------------------------------------------------- /test/reader/mml/msub-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-05.test -------------------------------------------------------------------------------- /test/reader/mml/msub-06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-06.test -------------------------------------------------------------------------------- /test/reader/mml/msub-07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-07.test -------------------------------------------------------------------------------- /test/reader/mml/msub-08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-08.test -------------------------------------------------------------------------------- /test/reader/mml/msub-09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-09.test -------------------------------------------------------------------------------- /test/reader/mml/msub-10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-10.test -------------------------------------------------------------------------------- /test/reader/mml/msub-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-11.test -------------------------------------------------------------------------------- /test/reader/mml/msub-12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub-12.test -------------------------------------------------------------------------------- /test/reader/mml/msub1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msub1.test -------------------------------------------------------------------------------- /test/reader/mml/msup-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-01.test -------------------------------------------------------------------------------- /test/reader/mml/msup-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-02.test -------------------------------------------------------------------------------- /test/reader/mml/msup-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-03.test -------------------------------------------------------------------------------- /test/reader/mml/msup-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-04.test -------------------------------------------------------------------------------- /test/reader/mml/msup-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-05.test -------------------------------------------------------------------------------- /test/reader/mml/msup-06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-06.test -------------------------------------------------------------------------------- /test/reader/mml/msup-07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-07.test -------------------------------------------------------------------------------- /test/reader/mml/msup-08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-08.test -------------------------------------------------------------------------------- /test/reader/mml/msup-09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-09.test -------------------------------------------------------------------------------- /test/reader/mml/msup-10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-10.test -------------------------------------------------------------------------------- /test/reader/mml/msup-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-11.test -------------------------------------------------------------------------------- /test/reader/mml/msup-12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup-12.test -------------------------------------------------------------------------------- /test/reader/mml/msup1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup1.test -------------------------------------------------------------------------------- /test/reader/mml/msup2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/msup2.test -------------------------------------------------------------------------------- /test/reader/mml/mtable2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mtable2.test -------------------------------------------------------------------------------- /test/reader/mml/mtext1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mtext1.test -------------------------------------------------------------------------------- /test/reader/mml/mtext2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/mtext2.test -------------------------------------------------------------------------------- /test/reader/mml/munder1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder1.test -------------------------------------------------------------------------------- /test/reader/mml/munder2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder2.test -------------------------------------------------------------------------------- /test/reader/mml/munder3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder3.test -------------------------------------------------------------------------------- /test/reader/mml/munder4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder4.test -------------------------------------------------------------------------------- /test/reader/mml/munder5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder5.test -------------------------------------------------------------------------------- /test/reader/mml/munder6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder6.test -------------------------------------------------------------------------------- /test/reader/mml/munder7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder7.test -------------------------------------------------------------------------------- /test/reader/mml/munder8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder8.test -------------------------------------------------------------------------------- /test/reader/mml/munder9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/munder9.test -------------------------------------------------------------------------------- /test/reader/mml/n.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/n.test -------------------------------------------------------------------------------- /test/reader/mml/o.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/o.test -------------------------------------------------------------------------------- /test/reader/mml/oint1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/oint1.test -------------------------------------------------------------------------------- /test/reader/mml/oint2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/oint2.test -------------------------------------------------------------------------------- /test/reader/mml/p.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/p.test -------------------------------------------------------------------------------- /test/reader/mml/primes1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/primes1.test -------------------------------------------------------------------------------- /test/reader/mml/primes2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/primes2.test -------------------------------------------------------------------------------- /test/reader/mml/prod1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/prod1.test -------------------------------------------------------------------------------- /test/reader/mml/prod2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/prod2.test -------------------------------------------------------------------------------- /test/reader/mml/q.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/q.test -------------------------------------------------------------------------------- /test/reader/mml/r.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/r.test -------------------------------------------------------------------------------- /test/reader/mml/s.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/s.test -------------------------------------------------------------------------------- /test/reader/mml/script.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/script.test -------------------------------------------------------------------------------- /test/reader/mml/serif.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/serif.test -------------------------------------------------------------------------------- /test/reader/mml/style1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/style1.test -------------------------------------------------------------------------------- /test/reader/mml/style2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/style2.test -------------------------------------------------------------------------------- /test/reader/mml/sum1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/sum1.test -------------------------------------------------------------------------------- /test/reader/mml/sum2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/sum2.test -------------------------------------------------------------------------------- /test/reader/mml/t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/t.test -------------------------------------------------------------------------------- /test/reader/mml/u.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/u.test -------------------------------------------------------------------------------- /test/reader/mml/v.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/v.test -------------------------------------------------------------------------------- /test/reader/mml/verbar1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/verbar1.test -------------------------------------------------------------------------------- /test/reader/mml/verbar2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/verbar2.test -------------------------------------------------------------------------------- /test/reader/mml/w.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/w.test -------------------------------------------------------------------------------- /test/reader/mml/white1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white1.test -------------------------------------------------------------------------------- /test/reader/mml/white10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white10.test -------------------------------------------------------------------------------- /test/reader/mml/white2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white2.test -------------------------------------------------------------------------------- /test/reader/mml/white3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white3.test -------------------------------------------------------------------------------- /test/reader/mml/white4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white4.test -------------------------------------------------------------------------------- /test/reader/mml/white5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white5.test -------------------------------------------------------------------------------- /test/reader/mml/white6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white6.test -------------------------------------------------------------------------------- /test/reader/mml/white7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white7.test -------------------------------------------------------------------------------- /test/reader/mml/white8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white8.test -------------------------------------------------------------------------------- /test/reader/mml/white9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/white9.test -------------------------------------------------------------------------------- /test/reader/mml/x.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/x.test -------------------------------------------------------------------------------- /test/reader/mml/xref1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/xref1.test -------------------------------------------------------------------------------- /test/reader/mml/y.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/y.test -------------------------------------------------------------------------------- /test/reader/mml/z.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/mml/z.test -------------------------------------------------------------------------------- /test/reader/omml/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/01.test -------------------------------------------------------------------------------- /test/reader/omml/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/02.test -------------------------------------------------------------------------------- /test/reader/omml/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/03.test -------------------------------------------------------------------------------- /test/reader/omml/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/04.test -------------------------------------------------------------------------------- /test/reader/omml/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/05.test -------------------------------------------------------------------------------- /test/reader/omml/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/06.test -------------------------------------------------------------------------------- /test/reader/omml/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/07.test -------------------------------------------------------------------------------- /test/reader/omml/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/08.test -------------------------------------------------------------------------------- /test/reader/omml/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/09.test -------------------------------------------------------------------------------- /test/reader/omml/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/10.test -------------------------------------------------------------------------------- /test/reader/omml/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/11.test -------------------------------------------------------------------------------- /test/reader/omml/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/12.test -------------------------------------------------------------------------------- /test/reader/omml/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/13.test -------------------------------------------------------------------------------- /test/reader/omml/14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/14.test -------------------------------------------------------------------------------- /test/reader/omml/15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/15.test -------------------------------------------------------------------------------- /test/reader/omml/153a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/153a.test -------------------------------------------------------------------------------- /test/reader/omml/153b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/153b.test -------------------------------------------------------------------------------- /test/reader/omml/153c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/153c.test -------------------------------------------------------------------------------- /test/reader/omml/16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/16.test -------------------------------------------------------------------------------- /test/reader/omml/17.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/17.test -------------------------------------------------------------------------------- /test/reader/omml/18.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/18.test -------------------------------------------------------------------------------- /test/reader/omml/19.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/19.test -------------------------------------------------------------------------------- /test/reader/omml/20.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/20.test -------------------------------------------------------------------------------- /test/reader/omml/21.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/21.test -------------------------------------------------------------------------------- /test/reader/omml/22.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/22.test -------------------------------------------------------------------------------- /test/reader/omml/boxed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/boxed.test -------------------------------------------------------------------------------- /test/reader/omml/cancel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/cancel.test -------------------------------------------------------------------------------- /test/reader/omml/choose.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/choose.test -------------------------------------------------------------------------------- /test/reader/omml/labels.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/labels.test -------------------------------------------------------------------------------- /test/reader/omml/macros.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/macros.test -------------------------------------------------------------------------------- /test/reader/omml/notin.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/notin.test -------------------------------------------------------------------------------- /test/reader/omml/subsup.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/subsup.test -------------------------------------------------------------------------------- /test/reader/omml/text.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/text.test -------------------------------------------------------------------------------- /test/reader/omml/tokens.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/omml/tokens.test -------------------------------------------------------------------------------- /test/reader/tex/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/01.test -------------------------------------------------------------------------------- /test/reader/tex/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/02.test -------------------------------------------------------------------------------- /test/reader/tex/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/03.test -------------------------------------------------------------------------------- /test/reader/tex/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/04.test -------------------------------------------------------------------------------- /test/reader/tex/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/05.test -------------------------------------------------------------------------------- /test/reader/tex/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/06.test -------------------------------------------------------------------------------- /test/reader/tex/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/07.test -------------------------------------------------------------------------------- /test/reader/tex/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/08.test -------------------------------------------------------------------------------- /test/reader/tex/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/09.test -------------------------------------------------------------------------------- /test/reader/tex/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/10.test -------------------------------------------------------------------------------- /test/reader/tex/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/11.test -------------------------------------------------------------------------------- /test/reader/tex/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/12.test -------------------------------------------------------------------------------- /test/reader/tex/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/13.test -------------------------------------------------------------------------------- /test/reader/tex/14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/14.test -------------------------------------------------------------------------------- /test/reader/tex/15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/15.test -------------------------------------------------------------------------------- /test/reader/tex/16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/16.test -------------------------------------------------------------------------------- /test/reader/tex/17.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/17.test -------------------------------------------------------------------------------- /test/reader/tex/18.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/18.test -------------------------------------------------------------------------------- /test/reader/tex/19.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/19.test -------------------------------------------------------------------------------- /test/reader/tex/20.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/20.test -------------------------------------------------------------------------------- /test/reader/tex/21.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/21.test -------------------------------------------------------------------------------- /test/reader/tex/22.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/22.test -------------------------------------------------------------------------------- /test/reader/tex/23.test: -------------------------------------------------------------------------------- 1 | <<< tex 2 | 1. 3 | 4 | >>> native 5 | [ ENumber "1" , ESymbol Ord "." ] 6 | -------------------------------------------------------------------------------- /test/reader/tex/boxed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/boxed.test -------------------------------------------------------------------------------- /test/reader/tex/cancel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/cancel.test -------------------------------------------------------------------------------- /test/reader/tex/choose.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/choose.test -------------------------------------------------------------------------------- /test/reader/tex/cospan.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/cospan.test -------------------------------------------------------------------------------- /test/reader/tex/genfrac.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/genfrac.test -------------------------------------------------------------------------------- /test/reader/tex/labels.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/labels.test -------------------------------------------------------------------------------- /test/reader/tex/macros.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/macros.test -------------------------------------------------------------------------------- /test/reader/tex/notin.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/notin.test -------------------------------------------------------------------------------- /test/reader/tex/phantom.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/phantom.test -------------------------------------------------------------------------------- /test/reader/tex/span.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/span.test -------------------------------------------------------------------------------- /test/reader/tex/subsup.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/subsup.test -------------------------------------------------------------------------------- /test/reader/tex/text.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/text.test -------------------------------------------------------------------------------- /test/reader/tex/tokens.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/tokens.test -------------------------------------------------------------------------------- /test/reader/tex/unicode.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/reader/tex/unicode.test -------------------------------------------------------------------------------- /test/regression/187.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/187.test -------------------------------------------------------------------------------- /test/regression/191.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/191.test -------------------------------------------------------------------------------- /test/regression/196.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/196.test -------------------------------------------------------------------------------- /test/regression/203.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/203.test -------------------------------------------------------------------------------- /test/regression/234.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/234.test -------------------------------------------------------------------------------- /test/regression/235.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/235.test -------------------------------------------------------------------------------- /test/regression/236a.test: -------------------------------------------------------------------------------- 1 | <<< tex 2 | \mathbf{A} 3 | >>> typst 4 | upright(bold(A)) 5 | -------------------------------------------------------------------------------- /test/regression/236b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/236b.test -------------------------------------------------------------------------------- /test/regression/238.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/238.test -------------------------------------------------------------------------------- /test/regression/239.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/239.test -------------------------------------------------------------------------------- /test/regression/241.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/241.test -------------------------------------------------------------------------------- /test/regression/244.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/244.test -------------------------------------------------------------------------------- /test/regression/245a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/245a.test -------------------------------------------------------------------------------- /test/regression/245b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/245b.test -------------------------------------------------------------------------------- /test/regression/252.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/252.test -------------------------------------------------------------------------------- /test/regression/258.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/258.test -------------------------------------------------------------------------------- /test/regression/259.test: -------------------------------------------------------------------------------- 1 | <<< tex 2 | \hspace{-1.2em} 3 | >>> native 4 | [ ESpace ((-6) % 5) ] 5 | -------------------------------------------------------------------------------- /test/regression/264.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/264.test -------------------------------------------------------------------------------- /test/regression/273.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/273.test -------------------------------------------------------------------------------- /test/regression/275.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/regression/275.test -------------------------------------------------------------------------------- /test/roundtrip/01.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/01.native -------------------------------------------------------------------------------- /test/roundtrip/02.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/02.native -------------------------------------------------------------------------------- /test/roundtrip/03.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/03.native -------------------------------------------------------------------------------- /test/roundtrip/04.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/04.native -------------------------------------------------------------------------------- /test/roundtrip/05.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/05.native -------------------------------------------------------------------------------- /test/roundtrip/06.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/06.native -------------------------------------------------------------------------------- /test/roundtrip/07.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/07.native -------------------------------------------------------------------------------- /test/roundtrip/08.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/08.native -------------------------------------------------------------------------------- /test/roundtrip/09.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/09.native -------------------------------------------------------------------------------- /test/roundtrip/10.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/10.native -------------------------------------------------------------------------------- /test/roundtrip/11.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/11.native -------------------------------------------------------------------------------- /test/roundtrip/12.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/12.native -------------------------------------------------------------------------------- /test/roundtrip/13.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/13.native -------------------------------------------------------------------------------- /test/roundtrip/14.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/14.native -------------------------------------------------------------------------------- /test/roundtrip/15.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/15.native -------------------------------------------------------------------------------- /test/roundtrip/16.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/16.native -------------------------------------------------------------------------------- /test/roundtrip/17.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/17.native -------------------------------------------------------------------------------- /test/roundtrip/18.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/18.native -------------------------------------------------------------------------------- /test/roundtrip/19.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/19.native -------------------------------------------------------------------------------- /test/roundtrip/20.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/20.native -------------------------------------------------------------------------------- /test/roundtrip/21.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/21.native -------------------------------------------------------------------------------- /test/roundtrip/22.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/22.native -------------------------------------------------------------------------------- /test/roundtrip/23.native: -------------------------------------------------------------------------------- 1 | [ ENumber "1" , ESymbol Ord "." ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/a.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/a.native -------------------------------------------------------------------------------- /test/roundtrip/abs1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/abs1.native -------------------------------------------------------------------------------- /test/roundtrip/b.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/b.native -------------------------------------------------------------------------------- /test/roundtrip/badEntity1.native: -------------------------------------------------------------------------------- 1 | [ ENumber "foo" ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/boxed.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/boxed.native -------------------------------------------------------------------------------- /test/roundtrip/c.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/c.native -------------------------------------------------------------------------------- /test/roundtrip/cancel.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/cancel.native -------------------------------------------------------------------------------- /test/roundtrip/chain1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/chain1.native -------------------------------------------------------------------------------- /test/roundtrip/choose.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/choose.native -------------------------------------------------------------------------------- /test/roundtrip/class1.native: -------------------------------------------------------------------------------- 1 | [ EIdentifier "x" ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/class2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/class2.native -------------------------------------------------------------------------------- /test/roundtrip/cospan.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/cospan.native -------------------------------------------------------------------------------- /test/roundtrip/d.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/d.native -------------------------------------------------------------------------------- /test/roundtrip/e.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/e.native -------------------------------------------------------------------------------- /test/roundtrip/f.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/f.native -------------------------------------------------------------------------------- /test/roundtrip/g.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/g.native -------------------------------------------------------------------------------- /test/roundtrip/h.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/h.native -------------------------------------------------------------------------------- /test/roundtrip/href1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/href1.native -------------------------------------------------------------------------------- /test/roundtrip/href2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/href2.native -------------------------------------------------------------------------------- /test/roundtrip/href3.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/href3.native -------------------------------------------------------------------------------- /test/roundtrip/i.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/i.native -------------------------------------------------------------------------------- /test/roundtrip/int10.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/int10.native -------------------------------------------------------------------------------- /test/roundtrip/int4.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/int4.native -------------------------------------------------------------------------------- /test/roundtrip/int5.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/int5.native -------------------------------------------------------------------------------- /test/roundtrip/int6.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/int6.native -------------------------------------------------------------------------------- /test/roundtrip/int7.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/int7.native -------------------------------------------------------------------------------- /test/roundtrip/j.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/j.native -------------------------------------------------------------------------------- /test/roundtrip/k.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/k.native -------------------------------------------------------------------------------- /test/roundtrip/l.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/l.native -------------------------------------------------------------------------------- /test/roundtrip/labels.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/labels.native -------------------------------------------------------------------------------- /test/roundtrip/m.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/m.native -------------------------------------------------------------------------------- /test/roundtrip/m10.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/m10.native -------------------------------------------------------------------------------- /test/roundtrip/m100.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/m100.native -------------------------------------------------------------------------------- /test/roundtrip/m1000.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/m1000.native -------------------------------------------------------------------------------- /test/roundtrip/macros.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/macros.native -------------------------------------------------------------------------------- /test/roundtrip/math3.native: -------------------------------------------------------------------------------- 1 | [ ENumber "2" , EIdentifier "x" ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/mfenced1.native: -------------------------------------------------------------------------------- 1 | [ EDelimited "(" ")" [ Right (EGrouped []) ] ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/mfenced2.native: -------------------------------------------------------------------------------- 1 | [ EDelimited "(" ")" [ Right (EIdentifier "x") ] ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/mfrac1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mfrac1.native -------------------------------------------------------------------------------- /test/roundtrip/mfrac2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mfrac2.native -------------------------------------------------------------------------------- /test/roundtrip/mfrac3.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mfrac3.native -------------------------------------------------------------------------------- /test/roundtrip/mfrac5.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mfrac5.native -------------------------------------------------------------------------------- /test/roundtrip/mfrac6.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mfrac6.native -------------------------------------------------------------------------------- /test/roundtrip/mfrac7.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mfrac7.native -------------------------------------------------------------------------------- /test/roundtrip/mi1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mi1.native -------------------------------------------------------------------------------- /test/roundtrip/mi2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mi2.native -------------------------------------------------------------------------------- /test/roundtrip/mi3.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mi3.native -------------------------------------------------------------------------------- /test/roundtrip/mi4.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mi4.native -------------------------------------------------------------------------------- /test/roundtrip/mid1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mid1.native -------------------------------------------------------------------------------- /test/roundtrip/mid2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mid2.native -------------------------------------------------------------------------------- /test/roundtrip/mn1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mn1.native -------------------------------------------------------------------------------- /test/roundtrip/mn2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mn2.native -------------------------------------------------------------------------------- /test/roundtrip/mn3.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mn3.native -------------------------------------------------------------------------------- /test/roundtrip/mn4.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mn4.native -------------------------------------------------------------------------------- /test/roundtrip/mo1.native: -------------------------------------------------------------------------------- 1 | [ ESymbol Bin "-" , ENumber "1" ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/mo3.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mo3.native -------------------------------------------------------------------------------- /test/roundtrip/mo6.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mo6.native -------------------------------------------------------------------------------- /test/roundtrip/mo7.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mo7.native -------------------------------------------------------------------------------- /test/roundtrip/mover1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover1.native -------------------------------------------------------------------------------- /test/roundtrip/mover2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover2.native -------------------------------------------------------------------------------- /test/roundtrip/mover3.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover3.native -------------------------------------------------------------------------------- /test/roundtrip/mover4.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover4.native -------------------------------------------------------------------------------- /test/roundtrip/mover5.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover5.native -------------------------------------------------------------------------------- /test/roundtrip/mover6.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover6.native -------------------------------------------------------------------------------- /test/roundtrip/mover7.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover7.native -------------------------------------------------------------------------------- /test/roundtrip/mover8.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover8.native -------------------------------------------------------------------------------- /test/roundtrip/mover9.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mover9.native -------------------------------------------------------------------------------- /test/roundtrip/mrow1.native: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/roundtrip/ms-12.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/ms-12.native -------------------------------------------------------------------------------- /test/roundtrip/ms-14.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/ms-14.native -------------------------------------------------------------------------------- /test/roundtrip/ms-15.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/ms-15.native -------------------------------------------------------------------------------- /test/roundtrip/ms-16.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/ms-16.native -------------------------------------------------------------------------------- /test/roundtrip/ms1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/ms1.native -------------------------------------------------------------------------------- /test/roundtrip/msqrt5.native: -------------------------------------------------------------------------------- 1 | [ ESqrt (EGrouped [ ESymbol Bin "-" , ENumber "1" ]) ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/msub1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/msub1.native -------------------------------------------------------------------------------- /test/roundtrip/msup1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/msup1.native -------------------------------------------------------------------------------- /test/roundtrip/msup2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/msup2.native -------------------------------------------------------------------------------- /test/roundtrip/mtext2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/mtext2.native -------------------------------------------------------------------------------- /test/roundtrip/n.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/n.native -------------------------------------------------------------------------------- /test/roundtrip/notin.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/notin.native -------------------------------------------------------------------------------- /test/roundtrip/o.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/o.native -------------------------------------------------------------------------------- /test/roundtrip/oint2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/oint2.native -------------------------------------------------------------------------------- /test/roundtrip/p.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/p.native -------------------------------------------------------------------------------- /test/roundtrip/prod1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/prod1.native -------------------------------------------------------------------------------- /test/roundtrip/q.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/q.native -------------------------------------------------------------------------------- /test/roundtrip/r.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/r.native -------------------------------------------------------------------------------- /test/roundtrip/s.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/s.native -------------------------------------------------------------------------------- /test/roundtrip/script.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/script.native -------------------------------------------------------------------------------- /test/roundtrip/semantics-01.native: -------------------------------------------------------------------------------- 1 | [ ENumber "123" ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/serif.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/serif.native -------------------------------------------------------------------------------- /test/roundtrip/span.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/span.native -------------------------------------------------------------------------------- /test/roundtrip/style2.native: -------------------------------------------------------------------------------- 1 | [ ESqrt (ENumber "2") ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/subsup.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/subsup.native -------------------------------------------------------------------------------- /test/roundtrip/sum2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/sum2.native -------------------------------------------------------------------------------- /test/roundtrip/t.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/t.native -------------------------------------------------------------------------------- /test/roundtrip/text.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/text.native -------------------------------------------------------------------------------- /test/roundtrip/tokens.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/tokens.native -------------------------------------------------------------------------------- /test/roundtrip/u.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/u.native -------------------------------------------------------------------------------- /test/roundtrip/v.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/v.native -------------------------------------------------------------------------------- /test/roundtrip/w.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/w.native -------------------------------------------------------------------------------- /test/roundtrip/whBcomments1.native: -------------------------------------------------------------------------------- 1 | [ ENumber "5" ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/white1.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white1.native -------------------------------------------------------------------------------- /test/roundtrip/white2.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white2.native -------------------------------------------------------------------------------- /test/roundtrip/white3.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white3.native -------------------------------------------------------------------------------- /test/roundtrip/white4.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white4.native -------------------------------------------------------------------------------- /test/roundtrip/white5.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white5.native -------------------------------------------------------------------------------- /test/roundtrip/white6.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white6.native -------------------------------------------------------------------------------- /test/roundtrip/white7.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white7.native -------------------------------------------------------------------------------- /test/roundtrip/white8.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white8.native -------------------------------------------------------------------------------- /test/roundtrip/white9.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/white9.native -------------------------------------------------------------------------------- /test/roundtrip/x.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/x.native -------------------------------------------------------------------------------- /test/roundtrip/xref1.native: -------------------------------------------------------------------------------- 1 | [ ENumber "2" ] 2 | -------------------------------------------------------------------------------- /test/roundtrip/y.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/y.native -------------------------------------------------------------------------------- /test/roundtrip/z.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/roundtrip/z.native -------------------------------------------------------------------------------- /test/test-texmath.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/test-texmath.hs -------------------------------------------------------------------------------- /test/writer/eqn/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/01.test -------------------------------------------------------------------------------- /test/writer/eqn/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/02.test -------------------------------------------------------------------------------- /test/writer/eqn/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/03.test -------------------------------------------------------------------------------- /test/writer/eqn/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/04.test -------------------------------------------------------------------------------- /test/writer/eqn/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/05.test -------------------------------------------------------------------------------- /test/writer/eqn/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/06.test -------------------------------------------------------------------------------- /test/writer/eqn/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/07.test -------------------------------------------------------------------------------- /test/writer/eqn/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/08.test -------------------------------------------------------------------------------- /test/writer/eqn/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/09.test -------------------------------------------------------------------------------- /test/writer/eqn/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/10.test -------------------------------------------------------------------------------- /test/writer/eqn/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/11.test -------------------------------------------------------------------------------- /test/writer/eqn/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/12.test -------------------------------------------------------------------------------- /test/writer/eqn/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/13.test -------------------------------------------------------------------------------- /test/writer/eqn/14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/14.test -------------------------------------------------------------------------------- /test/writer/eqn/15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/15.test -------------------------------------------------------------------------------- /test/writer/eqn/16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/16.test -------------------------------------------------------------------------------- /test/writer/eqn/17.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/17.test -------------------------------------------------------------------------------- /test/writer/eqn/18.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/18.test -------------------------------------------------------------------------------- /test/writer/eqn/19.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/19.test -------------------------------------------------------------------------------- /test/writer/eqn/20.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/20.test -------------------------------------------------------------------------------- /test/writer/eqn/21.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/21.test -------------------------------------------------------------------------------- /test/writer/eqn/22.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/22.test -------------------------------------------------------------------------------- /test/writer/eqn/23.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "1" , ESymbol Ord "." ] 3 | >>> eqn 4 | 1 . 5 | -------------------------------------------------------------------------------- /test/writer/eqn/a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/a.test -------------------------------------------------------------------------------- /test/writer/eqn/abs1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/abs1.test -------------------------------------------------------------------------------- /test/writer/eqn/b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/b.test -------------------------------------------------------------------------------- /test/writer/eqn/badEntity1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "foo" ] 3 | >>> eqn 4 | foo 5 | -------------------------------------------------------------------------------- /test/writer/eqn/boxed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/boxed.test -------------------------------------------------------------------------------- /test/writer/eqn/c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/c.test -------------------------------------------------------------------------------- /test/writer/eqn/cancel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/cancel.test -------------------------------------------------------------------------------- /test/writer/eqn/chain2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/chain2.test -------------------------------------------------------------------------------- /test/writer/eqn/choose.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/choose.test -------------------------------------------------------------------------------- /test/writer/eqn/class2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/class2.test -------------------------------------------------------------------------------- /test/writer/eqn/coprod2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/coprod2.test -------------------------------------------------------------------------------- /test/writer/eqn/cospan.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/cospan.test -------------------------------------------------------------------------------- /test/writer/eqn/d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/d.test -------------------------------------------------------------------------------- /test/writer/eqn/digamma.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/digamma.test -------------------------------------------------------------------------------- /test/writer/eqn/dotless.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/dotless.test -------------------------------------------------------------------------------- /test/writer/eqn/e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/e.test -------------------------------------------------------------------------------- /test/writer/eqn/f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/f.test -------------------------------------------------------------------------------- /test/writer/eqn/fraktur.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/fraktur.test -------------------------------------------------------------------------------- /test/writer/eqn/g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/g.test -------------------------------------------------------------------------------- /test/writer/eqn/genfrac.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/genfrac.test -------------------------------------------------------------------------------- /test/writer/eqn/h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/h.test -------------------------------------------------------------------------------- /test/writer/eqn/href1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/href1.test -------------------------------------------------------------------------------- /test/writer/eqn/href2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/href2.test -------------------------------------------------------------------------------- /test/writer/eqn/href3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/href3.test -------------------------------------------------------------------------------- /test/writer/eqn/i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/i.test -------------------------------------------------------------------------------- /test/writer/eqn/int1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/int1.test -------------------------------------------------------------------------------- /test/writer/eqn/int4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/int4.test -------------------------------------------------------------------------------- /test/writer/eqn/int6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/int6.test -------------------------------------------------------------------------------- /test/writer/eqn/int7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/int7.test -------------------------------------------------------------------------------- /test/writer/eqn/int9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/int9.test -------------------------------------------------------------------------------- /test/writer/eqn/j.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/j.test -------------------------------------------------------------------------------- /test/writer/eqn/k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/k.test -------------------------------------------------------------------------------- /test/writer/eqn/l.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/l.test -------------------------------------------------------------------------------- /test/writer/eqn/labels.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/labels.test -------------------------------------------------------------------------------- /test/writer/eqn/m.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/m.test -------------------------------------------------------------------------------- /test/writer/eqn/m10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/m10.test -------------------------------------------------------------------------------- /test/writer/eqn/m100.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/m100.test -------------------------------------------------------------------------------- /test/writer/eqn/m1000.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/m1000.test -------------------------------------------------------------------------------- /test/writer/eqn/macros.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/macros.test -------------------------------------------------------------------------------- /test/writer/eqn/math3.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "2" , EIdentifier "x" ] 3 | >>> eqn 4 | 2 x 5 | -------------------------------------------------------------------------------- /test/writer/eqn/merrorB3.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [] 3 | >>> eqn 4 | -------------------------------------------------------------------------------- /test/writer/eqn/mfrac1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mfrac1.test -------------------------------------------------------------------------------- /test/writer/eqn/mfrac2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mfrac2.test -------------------------------------------------------------------------------- /test/writer/eqn/mfrac3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mfrac3.test -------------------------------------------------------------------------------- /test/writer/eqn/mfrac4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mfrac4.test -------------------------------------------------------------------------------- /test/writer/eqn/mfrac7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mfrac7.test -------------------------------------------------------------------------------- /test/writer/eqn/mi1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mi1.test -------------------------------------------------------------------------------- /test/writer/eqn/mi2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mi2.test -------------------------------------------------------------------------------- /test/writer/eqn/mi3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mi3.test -------------------------------------------------------------------------------- /test/writer/eqn/mi4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mi4.test -------------------------------------------------------------------------------- /test/writer/eqn/mid1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mid1.test -------------------------------------------------------------------------------- /test/writer/eqn/mid2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mid2.test -------------------------------------------------------------------------------- /test/writer/eqn/mn1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mn1.test -------------------------------------------------------------------------------- /test/writer/eqn/mn2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mn2.test -------------------------------------------------------------------------------- /test/writer/eqn/mn3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mn3.test -------------------------------------------------------------------------------- /test/writer/eqn/mn4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mn4.test -------------------------------------------------------------------------------- /test/writer/eqn/mo1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ESymbol Bin "-" , ENumber "1" ] 3 | >>> eqn 4 | - 1 5 | -------------------------------------------------------------------------------- /test/writer/eqn/mo2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mo2.test -------------------------------------------------------------------------------- /test/writer/eqn/mo3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mo3.test -------------------------------------------------------------------------------- /test/writer/eqn/mo6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mo6.test -------------------------------------------------------------------------------- /test/writer/eqn/mo7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mo7.test -------------------------------------------------------------------------------- /test/writer/eqn/mover1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover1.test -------------------------------------------------------------------------------- /test/writer/eqn/mover2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover2.test -------------------------------------------------------------------------------- /test/writer/eqn/mover3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover3.test -------------------------------------------------------------------------------- /test/writer/eqn/mover4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover4.test -------------------------------------------------------------------------------- /test/writer/eqn/mover5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover5.test -------------------------------------------------------------------------------- /test/writer/eqn/mover6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover6.test -------------------------------------------------------------------------------- /test/writer/eqn/mover7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover7.test -------------------------------------------------------------------------------- /test/writer/eqn/mover8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover8.test -------------------------------------------------------------------------------- /test/writer/eqn/mover9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mover9.test -------------------------------------------------------------------------------- /test/writer/eqn/mrootB1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mrootB1.test -------------------------------------------------------------------------------- /test/writer/eqn/mrow-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mrow-01.test -------------------------------------------------------------------------------- /test/writer/eqn/mrow-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mrow-02.test -------------------------------------------------------------------------------- /test/writer/eqn/ms-13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/ms-13.test -------------------------------------------------------------------------------- /test/writer/eqn/ms-14.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ EText TextNormal "\160" ] 3 | >>> eqn 4 | roman " " 5 | -------------------------------------------------------------------------------- /test/writer/eqn/ms-15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/ms-15.test -------------------------------------------------------------------------------- /test/writer/eqn/ms-16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/ms-16.test -------------------------------------------------------------------------------- /test/writer/eqn/ms1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/ms1.test -------------------------------------------------------------------------------- /test/writer/eqn/mspace1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mspace1.test -------------------------------------------------------------------------------- /test/writer/eqn/mspace2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mspace2.test -------------------------------------------------------------------------------- /test/writer/eqn/msqrt5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msqrt5.test -------------------------------------------------------------------------------- /test/writer/eqn/msqrtB7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msqrtB7.test -------------------------------------------------------------------------------- /test/writer/eqn/mstyle1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mstyle1.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-01.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-02.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-03.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-04.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-05.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-06.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-07.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-08.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-09.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-10.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-11.test -------------------------------------------------------------------------------- /test/writer/eqn/msub-12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub-12.test -------------------------------------------------------------------------------- /test/writer/eqn/msub1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msub1.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-01.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-02.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-03.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-04.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-05.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-06.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-07.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-08.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-09.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-10.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-11.test -------------------------------------------------------------------------------- /test/writer/eqn/msup-12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup-12.test -------------------------------------------------------------------------------- /test/writer/eqn/msup1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup1.test -------------------------------------------------------------------------------- /test/writer/eqn/msup2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/msup2.test -------------------------------------------------------------------------------- /test/writer/eqn/mtable2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mtable2.test -------------------------------------------------------------------------------- /test/writer/eqn/mtext2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/mtext2.test -------------------------------------------------------------------------------- /test/writer/eqn/munder1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder1.test -------------------------------------------------------------------------------- /test/writer/eqn/munder2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder2.test -------------------------------------------------------------------------------- /test/writer/eqn/munder3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder3.test -------------------------------------------------------------------------------- /test/writer/eqn/munder4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder4.test -------------------------------------------------------------------------------- /test/writer/eqn/munder5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder5.test -------------------------------------------------------------------------------- /test/writer/eqn/munder6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder6.test -------------------------------------------------------------------------------- /test/writer/eqn/munder7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder7.test -------------------------------------------------------------------------------- /test/writer/eqn/munder8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder8.test -------------------------------------------------------------------------------- /test/writer/eqn/munder9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/munder9.test -------------------------------------------------------------------------------- /test/writer/eqn/n.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/n.test -------------------------------------------------------------------------------- /test/writer/eqn/notin.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/notin.test -------------------------------------------------------------------------------- /test/writer/eqn/o.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/o.test -------------------------------------------------------------------------------- /test/writer/eqn/oint1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/oint1.test -------------------------------------------------------------------------------- /test/writer/eqn/p.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/p.test -------------------------------------------------------------------------------- /test/writer/eqn/phantom.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/phantom.test -------------------------------------------------------------------------------- /test/writer/eqn/primes1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/primes1.test -------------------------------------------------------------------------------- /test/writer/eqn/primes2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/primes2.test -------------------------------------------------------------------------------- /test/writer/eqn/prod2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/prod2.test -------------------------------------------------------------------------------- /test/writer/eqn/q.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/q.test -------------------------------------------------------------------------------- /test/writer/eqn/r.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/r.test -------------------------------------------------------------------------------- /test/writer/eqn/s.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/s.test -------------------------------------------------------------------------------- /test/writer/eqn/script.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/script.test -------------------------------------------------------------------------------- /test/writer/eqn/semantics-01.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "123" ] 3 | >>> eqn 4 | 123 5 | -------------------------------------------------------------------------------- /test/writer/eqn/serif.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/serif.test -------------------------------------------------------------------------------- /test/writer/eqn/span.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/span.test -------------------------------------------------------------------------------- /test/writer/eqn/style1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "2" ] 3 | >>> eqn 4 | 2 5 | -------------------------------------------------------------------------------- /test/writer/eqn/style2.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ESqrt (ENumber "2") ] 3 | >>> eqn 4 | sqrt 2 5 | -------------------------------------------------------------------------------- /test/writer/eqn/subsup.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/subsup.test -------------------------------------------------------------------------------- /test/writer/eqn/sum1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/sum1.test -------------------------------------------------------------------------------- /test/writer/eqn/t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/t.test -------------------------------------------------------------------------------- /test/writer/eqn/text.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/text.test -------------------------------------------------------------------------------- /test/writer/eqn/tokens.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/tokens.test -------------------------------------------------------------------------------- /test/writer/eqn/u.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/u.test -------------------------------------------------------------------------------- /test/writer/eqn/unicode.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/unicode.test -------------------------------------------------------------------------------- /test/writer/eqn/v.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/v.test -------------------------------------------------------------------------------- /test/writer/eqn/verbar2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/verbar2.test -------------------------------------------------------------------------------- /test/writer/eqn/w.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/w.test -------------------------------------------------------------------------------- /test/writer/eqn/whBcomments1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "5" ] 3 | >>> eqn 4 | 5 5 | -------------------------------------------------------------------------------- /test/writer/eqn/white1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white1.test -------------------------------------------------------------------------------- /test/writer/eqn/white10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white10.test -------------------------------------------------------------------------------- /test/writer/eqn/white2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white2.test -------------------------------------------------------------------------------- /test/writer/eqn/white3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white3.test -------------------------------------------------------------------------------- /test/writer/eqn/white4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white4.test -------------------------------------------------------------------------------- /test/writer/eqn/white5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white5.test -------------------------------------------------------------------------------- /test/writer/eqn/white6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white6.test -------------------------------------------------------------------------------- /test/writer/eqn/white7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white7.test -------------------------------------------------------------------------------- /test/writer/eqn/white8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white8.test -------------------------------------------------------------------------------- /test/writer/eqn/white9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/white9.test -------------------------------------------------------------------------------- /test/writer/eqn/x.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/x.test -------------------------------------------------------------------------------- /test/writer/eqn/xmllang1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ EIdentifier "x" ] 3 | >>> eqn 4 | x 5 | -------------------------------------------------------------------------------- /test/writer/eqn/y.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/y.test -------------------------------------------------------------------------------- /test/writer/eqn/z.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/eqn/z.test -------------------------------------------------------------------------------- /test/writer/mml/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/01.test -------------------------------------------------------------------------------- /test/writer/mml/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/02.test -------------------------------------------------------------------------------- /test/writer/mml/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/03.test -------------------------------------------------------------------------------- /test/writer/mml/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/04.test -------------------------------------------------------------------------------- /test/writer/mml/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/05.test -------------------------------------------------------------------------------- /test/writer/mml/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/06.test -------------------------------------------------------------------------------- /test/writer/mml/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/07.test -------------------------------------------------------------------------------- /test/writer/mml/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/08.test -------------------------------------------------------------------------------- /test/writer/mml/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/09.test -------------------------------------------------------------------------------- /test/writer/mml/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/10.test -------------------------------------------------------------------------------- /test/writer/mml/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/11.test -------------------------------------------------------------------------------- /test/writer/mml/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/12.test -------------------------------------------------------------------------------- /test/writer/mml/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/13.test -------------------------------------------------------------------------------- /test/writer/mml/14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/14.test -------------------------------------------------------------------------------- /test/writer/mml/15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/15.test -------------------------------------------------------------------------------- /test/writer/mml/16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/16.test -------------------------------------------------------------------------------- /test/writer/mml/17.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/17.test -------------------------------------------------------------------------------- /test/writer/mml/18.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/18.test -------------------------------------------------------------------------------- /test/writer/mml/19.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/19.test -------------------------------------------------------------------------------- /test/writer/mml/20.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/20.test -------------------------------------------------------------------------------- /test/writer/mml/21.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/21.test -------------------------------------------------------------------------------- /test/writer/mml/22.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/22.test -------------------------------------------------------------------------------- /test/writer/mml/23.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/23.test -------------------------------------------------------------------------------- /test/writer/mml/a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/a.test -------------------------------------------------------------------------------- /test/writer/mml/abs1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/abs1.test -------------------------------------------------------------------------------- /test/writer/mml/b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/b.test -------------------------------------------------------------------------------- /test/writer/mml/boxed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/boxed.test -------------------------------------------------------------------------------- /test/writer/mml/c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/c.test -------------------------------------------------------------------------------- /test/writer/mml/chain2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/chain2.test -------------------------------------------------------------------------------- /test/writer/mml/choose.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/choose.test -------------------------------------------------------------------------------- /test/writer/mml/class2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/class2.test -------------------------------------------------------------------------------- /test/writer/mml/coprod2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/coprod2.test -------------------------------------------------------------------------------- /test/writer/mml/cospan.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/cospan.test -------------------------------------------------------------------------------- /test/writer/mml/d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/d.test -------------------------------------------------------------------------------- /test/writer/mml/digamma.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/digamma.test -------------------------------------------------------------------------------- /test/writer/mml/dotless.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/dotless.test -------------------------------------------------------------------------------- /test/writer/mml/e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/e.test -------------------------------------------------------------------------------- /test/writer/mml/f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/f.test -------------------------------------------------------------------------------- /test/writer/mml/fraktur.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/fraktur.test -------------------------------------------------------------------------------- /test/writer/mml/g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/g.test -------------------------------------------------------------------------------- /test/writer/mml/genfrac.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/genfrac.test -------------------------------------------------------------------------------- /test/writer/mml/h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/h.test -------------------------------------------------------------------------------- /test/writer/mml/href1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/href1.test -------------------------------------------------------------------------------- /test/writer/mml/href2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/href2.test -------------------------------------------------------------------------------- /test/writer/mml/href3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/href3.test -------------------------------------------------------------------------------- /test/writer/mml/i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/i.test -------------------------------------------------------------------------------- /test/writer/mml/int1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/int1.test -------------------------------------------------------------------------------- /test/writer/mml/int4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/int4.test -------------------------------------------------------------------------------- /test/writer/mml/int6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/int6.test -------------------------------------------------------------------------------- /test/writer/mml/int7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/int7.test -------------------------------------------------------------------------------- /test/writer/mml/int9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/int9.test -------------------------------------------------------------------------------- /test/writer/mml/j.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/j.test -------------------------------------------------------------------------------- /test/writer/mml/k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/k.test -------------------------------------------------------------------------------- /test/writer/mml/l.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/l.test -------------------------------------------------------------------------------- /test/writer/mml/labels.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/labels.test -------------------------------------------------------------------------------- /test/writer/mml/m.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/m.test -------------------------------------------------------------------------------- /test/writer/mml/m10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/m10.test -------------------------------------------------------------------------------- /test/writer/mml/m100.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/m100.test -------------------------------------------------------------------------------- /test/writer/mml/m1000.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/m1000.test -------------------------------------------------------------------------------- /test/writer/mml/macros.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/macros.test -------------------------------------------------------------------------------- /test/writer/mml/math3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/math3.test -------------------------------------------------------------------------------- /test/writer/mml/mfrac1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mfrac1.test -------------------------------------------------------------------------------- /test/writer/mml/mfrac2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mfrac2.test -------------------------------------------------------------------------------- /test/writer/mml/mfrac3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mfrac3.test -------------------------------------------------------------------------------- /test/writer/mml/mfrac4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mfrac4.test -------------------------------------------------------------------------------- /test/writer/mml/mfrac7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mfrac7.test -------------------------------------------------------------------------------- /test/writer/mml/mi1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mi1.test -------------------------------------------------------------------------------- /test/writer/mml/mi2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mi2.test -------------------------------------------------------------------------------- /test/writer/mml/mi3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mi3.test -------------------------------------------------------------------------------- /test/writer/mml/mi4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mi4.test -------------------------------------------------------------------------------- /test/writer/mml/mid1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mid1.test -------------------------------------------------------------------------------- /test/writer/mml/mid2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mid2.test -------------------------------------------------------------------------------- /test/writer/mml/mn1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mn1.test -------------------------------------------------------------------------------- /test/writer/mml/mn2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mn2.test -------------------------------------------------------------------------------- /test/writer/mml/mn3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mn3.test -------------------------------------------------------------------------------- /test/writer/mml/mn4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mn4.test -------------------------------------------------------------------------------- /test/writer/mml/mo1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mo1.test -------------------------------------------------------------------------------- /test/writer/mml/mo2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mo2.test -------------------------------------------------------------------------------- /test/writer/mml/mo3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mo3.test -------------------------------------------------------------------------------- /test/writer/mml/mo6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mo6.test -------------------------------------------------------------------------------- /test/writer/mml/mo7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mo7.test -------------------------------------------------------------------------------- /test/writer/mml/mover1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover1.test -------------------------------------------------------------------------------- /test/writer/mml/mover2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover2.test -------------------------------------------------------------------------------- /test/writer/mml/mover3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover3.test -------------------------------------------------------------------------------- /test/writer/mml/mover4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover4.test -------------------------------------------------------------------------------- /test/writer/mml/mover5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover5.test -------------------------------------------------------------------------------- /test/writer/mml/mover6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover6.test -------------------------------------------------------------------------------- /test/writer/mml/mover7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover7.test -------------------------------------------------------------------------------- /test/writer/mml/mover8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover8.test -------------------------------------------------------------------------------- /test/writer/mml/mover9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mover9.test -------------------------------------------------------------------------------- /test/writer/mml/mrootB1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mrootB1.test -------------------------------------------------------------------------------- /test/writer/mml/mrow-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mrow-01.test -------------------------------------------------------------------------------- /test/writer/mml/mrow-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mrow-02.test -------------------------------------------------------------------------------- /test/writer/mml/ms-13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/ms-13.test -------------------------------------------------------------------------------- /test/writer/mml/ms-14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/ms-14.test -------------------------------------------------------------------------------- /test/writer/mml/ms-15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/ms-15.test -------------------------------------------------------------------------------- /test/writer/mml/ms-16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/ms-16.test -------------------------------------------------------------------------------- /test/writer/mml/ms1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/ms1.test -------------------------------------------------------------------------------- /test/writer/mml/mspace1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mspace1.test -------------------------------------------------------------------------------- /test/writer/mml/mspace2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mspace2.test -------------------------------------------------------------------------------- /test/writer/mml/msqrt5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msqrt5.test -------------------------------------------------------------------------------- /test/writer/mml/msqrtB7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msqrtB7.test -------------------------------------------------------------------------------- /test/writer/mml/mstyle1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/mstyle1.test -------------------------------------------------------------------------------- /test/writer/mml/msub-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-01.test -------------------------------------------------------------------------------- /test/writer/mml/msub-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-02.test -------------------------------------------------------------------------------- /test/writer/mml/msub-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-03.test -------------------------------------------------------------------------------- /test/writer/mml/msub-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-04.test -------------------------------------------------------------------------------- /test/writer/mml/msub-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-05.test -------------------------------------------------------------------------------- /test/writer/mml/msub-06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-06.test -------------------------------------------------------------------------------- /test/writer/mml/msub-07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-07.test -------------------------------------------------------------------------------- /test/writer/mml/msub-08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-08.test -------------------------------------------------------------------------------- /test/writer/mml/msub-09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-09.test -------------------------------------------------------------------------------- /test/writer/mml/msub-10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-10.test -------------------------------------------------------------------------------- /test/writer/mml/msub-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-11.test -------------------------------------------------------------------------------- /test/writer/mml/msub-12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub-12.test -------------------------------------------------------------------------------- /test/writer/mml/msub1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msub1.test -------------------------------------------------------------------------------- /test/writer/mml/msup-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msup-01.test -------------------------------------------------------------------------------- /test/writer/mml/msup-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msup-02.test -------------------------------------------------------------------------------- /test/writer/mml/msup-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msup-03.test -------------------------------------------------------------------------------- /test/writer/mml/msup-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msup-04.test -------------------------------------------------------------------------------- /test/writer/mml/msup-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msup-05.test -------------------------------------------------------------------------------- /test/writer/mml/msup-06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msup-06.test -------------------------------------------------------------------------------- /test/writer/mml/msup-07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msup-07.test -------------------------------------------------------------------------------- /test/writer/mml/msup-08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/msup-08.test -------------------------------------------------------------------------------- /test/writer/mml/n.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/n.test -------------------------------------------------------------------------------- /test/writer/mml/o.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/o.test -------------------------------------------------------------------------------- /test/writer/mml/p.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/p.test -------------------------------------------------------------------------------- /test/writer/mml/q.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/q.test -------------------------------------------------------------------------------- /test/writer/mml/r.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/r.test -------------------------------------------------------------------------------- /test/writer/mml/s.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/s.test -------------------------------------------------------------------------------- /test/writer/mml/span.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/span.test -------------------------------------------------------------------------------- /test/writer/mml/sum1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/sum1.test -------------------------------------------------------------------------------- /test/writer/mml/t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/t.test -------------------------------------------------------------------------------- /test/writer/mml/text.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/text.test -------------------------------------------------------------------------------- /test/writer/mml/u.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/u.test -------------------------------------------------------------------------------- /test/writer/mml/v.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/v.test -------------------------------------------------------------------------------- /test/writer/mml/w.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/w.test -------------------------------------------------------------------------------- /test/writer/mml/x.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/x.test -------------------------------------------------------------------------------- /test/writer/mml/y.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/y.test -------------------------------------------------------------------------------- /test/writer/mml/z.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/mml/z.test -------------------------------------------------------------------------------- /test/writer/omml/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/01.test -------------------------------------------------------------------------------- /test/writer/omml/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/02.test -------------------------------------------------------------------------------- /test/writer/omml/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/03.test -------------------------------------------------------------------------------- /test/writer/omml/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/04.test -------------------------------------------------------------------------------- /test/writer/omml/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/05.test -------------------------------------------------------------------------------- /test/writer/omml/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/06.test -------------------------------------------------------------------------------- /test/writer/omml/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/07.test -------------------------------------------------------------------------------- /test/writer/omml/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/08.test -------------------------------------------------------------------------------- /test/writer/omml/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/09.test -------------------------------------------------------------------------------- /test/writer/omml/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/10.test -------------------------------------------------------------------------------- /test/writer/omml/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/11.test -------------------------------------------------------------------------------- /test/writer/omml/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/12.test -------------------------------------------------------------------------------- /test/writer/omml/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/13.test -------------------------------------------------------------------------------- /test/writer/omml/14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/14.test -------------------------------------------------------------------------------- /test/writer/omml/15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/15.test -------------------------------------------------------------------------------- /test/writer/omml/16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/16.test -------------------------------------------------------------------------------- /test/writer/omml/17.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/17.test -------------------------------------------------------------------------------- /test/writer/omml/18.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/18.test -------------------------------------------------------------------------------- /test/writer/omml/19.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/19.test -------------------------------------------------------------------------------- /test/writer/omml/20.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/20.test -------------------------------------------------------------------------------- /test/writer/omml/21.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/21.test -------------------------------------------------------------------------------- /test/writer/omml/22.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/22.test -------------------------------------------------------------------------------- /test/writer/omml/23.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/23.test -------------------------------------------------------------------------------- /test/writer/omml/a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/a.test -------------------------------------------------------------------------------- /test/writer/omml/b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/b.test -------------------------------------------------------------------------------- /test/writer/omml/c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/c.test -------------------------------------------------------------------------------- /test/writer/omml/d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/d.test -------------------------------------------------------------------------------- /test/writer/omml/e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/e.test -------------------------------------------------------------------------------- /test/writer/omml/f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/f.test -------------------------------------------------------------------------------- /test/writer/omml/g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/g.test -------------------------------------------------------------------------------- /test/writer/omml/h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/h.test -------------------------------------------------------------------------------- /test/writer/omml/i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/i.test -------------------------------------------------------------------------------- /test/writer/omml/j.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/j.test -------------------------------------------------------------------------------- /test/writer/omml/k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/k.test -------------------------------------------------------------------------------- /test/writer/omml/l.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/l.test -------------------------------------------------------------------------------- /test/writer/omml/m.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/m.test -------------------------------------------------------------------------------- /test/writer/omml/m10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/m10.test -------------------------------------------------------------------------------- /test/writer/omml/mi1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mi1.test -------------------------------------------------------------------------------- /test/writer/omml/mi2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mi2.test -------------------------------------------------------------------------------- /test/writer/omml/mi3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mi3.test -------------------------------------------------------------------------------- /test/writer/omml/mi4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mi4.test -------------------------------------------------------------------------------- /test/writer/omml/mn1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mn1.test -------------------------------------------------------------------------------- /test/writer/omml/mn2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mn2.test -------------------------------------------------------------------------------- /test/writer/omml/mn3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mn3.test -------------------------------------------------------------------------------- /test/writer/omml/mn4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mn4.test -------------------------------------------------------------------------------- /test/writer/omml/mo1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mo1.test -------------------------------------------------------------------------------- /test/writer/omml/mo2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mo2.test -------------------------------------------------------------------------------- /test/writer/omml/mo3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mo3.test -------------------------------------------------------------------------------- /test/writer/omml/mo6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mo6.test -------------------------------------------------------------------------------- /test/writer/omml/mo7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/mo7.test -------------------------------------------------------------------------------- /test/writer/omml/ms1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/ms1.test -------------------------------------------------------------------------------- /test/writer/omml/n.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/n.test -------------------------------------------------------------------------------- /test/writer/omml/o.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/o.test -------------------------------------------------------------------------------- /test/writer/omml/p.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/p.test -------------------------------------------------------------------------------- /test/writer/omml/q.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/q.test -------------------------------------------------------------------------------- /test/writer/omml/r.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/r.test -------------------------------------------------------------------------------- /test/writer/omml/s.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/s.test -------------------------------------------------------------------------------- /test/writer/omml/t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/t.test -------------------------------------------------------------------------------- /test/writer/omml/u.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/u.test -------------------------------------------------------------------------------- /test/writer/omml/v.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/v.test -------------------------------------------------------------------------------- /test/writer/omml/w.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/w.test -------------------------------------------------------------------------------- /test/writer/omml/x.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/x.test -------------------------------------------------------------------------------- /test/writer/omml/y.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/y.test -------------------------------------------------------------------------------- /test/writer/omml/z.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/omml/z.test -------------------------------------------------------------------------------- /test/writer/tex/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/01.test -------------------------------------------------------------------------------- /test/writer/tex/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/02.test -------------------------------------------------------------------------------- /test/writer/tex/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/03.test -------------------------------------------------------------------------------- /test/writer/tex/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/04.test -------------------------------------------------------------------------------- /test/writer/tex/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/05.test -------------------------------------------------------------------------------- /test/writer/tex/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/06.test -------------------------------------------------------------------------------- /test/writer/tex/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/07.test -------------------------------------------------------------------------------- /test/writer/tex/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/08.test -------------------------------------------------------------------------------- /test/writer/tex/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/09.test -------------------------------------------------------------------------------- /test/writer/tex/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/10.test -------------------------------------------------------------------------------- /test/writer/tex/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/11.test -------------------------------------------------------------------------------- /test/writer/tex/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/12.test -------------------------------------------------------------------------------- /test/writer/tex/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/13.test -------------------------------------------------------------------------------- /test/writer/tex/14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/14.test -------------------------------------------------------------------------------- /test/writer/tex/15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/15.test -------------------------------------------------------------------------------- /test/writer/tex/16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/16.test -------------------------------------------------------------------------------- /test/writer/tex/17.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/17.test -------------------------------------------------------------------------------- /test/writer/tex/18.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/18.test -------------------------------------------------------------------------------- /test/writer/tex/19.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/19.test -------------------------------------------------------------------------------- /test/writer/tex/20.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/20.test -------------------------------------------------------------------------------- /test/writer/tex/21.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/21.test -------------------------------------------------------------------------------- /test/writer/tex/22.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/22.test -------------------------------------------------------------------------------- /test/writer/tex/23.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "1" , ESymbol Ord "." ] 3 | >>> tex 4 | 1. 5 | -------------------------------------------------------------------------------- /test/writer/tex/a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/a.test -------------------------------------------------------------------------------- /test/writer/tex/abs1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/abs1.test -------------------------------------------------------------------------------- /test/writer/tex/b.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/b.test -------------------------------------------------------------------------------- /test/writer/tex/badEntity1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "foo" ] 3 | >>> tex 4 | foo 5 | -------------------------------------------------------------------------------- /test/writer/tex/c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/c.test -------------------------------------------------------------------------------- /test/writer/tex/d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/d.test -------------------------------------------------------------------------------- /test/writer/tex/e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/e.test -------------------------------------------------------------------------------- /test/writer/tex/f.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/f.test -------------------------------------------------------------------------------- /test/writer/tex/g.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/g.test -------------------------------------------------------------------------------- /test/writer/tex/h.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/h.test -------------------------------------------------------------------------------- /test/writer/tex/i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/i.test -------------------------------------------------------------------------------- /test/writer/tex/int1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/int1.test -------------------------------------------------------------------------------- /test/writer/tex/int4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/int4.test -------------------------------------------------------------------------------- /test/writer/tex/int6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/int6.test -------------------------------------------------------------------------------- /test/writer/tex/int7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/int7.test -------------------------------------------------------------------------------- /test/writer/tex/int9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/int9.test -------------------------------------------------------------------------------- /test/writer/tex/j.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/j.test -------------------------------------------------------------------------------- /test/writer/tex/k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/k.test -------------------------------------------------------------------------------- /test/writer/tex/l.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/l.test -------------------------------------------------------------------------------- /test/writer/tex/m.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/m.test -------------------------------------------------------------------------------- /test/writer/tex/m10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/m10.test -------------------------------------------------------------------------------- /test/writer/tex/m100.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/m100.test -------------------------------------------------------------------------------- /test/writer/tex/math3.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "2" , EIdentifier "x" ] 3 | >>> tex 4 | 2x 5 | -------------------------------------------------------------------------------- /test/writer/tex/merrorB3.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [] 3 | >>> tex 4 | -------------------------------------------------------------------------------- /test/writer/tex/mi1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mi1.test -------------------------------------------------------------------------------- /test/writer/tex/mi2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mi2.test -------------------------------------------------------------------------------- /test/writer/tex/mi3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mi3.test -------------------------------------------------------------------------------- /test/writer/tex/mi4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mi4.test -------------------------------------------------------------------------------- /test/writer/tex/mid1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mid1.test -------------------------------------------------------------------------------- /test/writer/tex/mid2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mid2.test -------------------------------------------------------------------------------- /test/writer/tex/mn1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mn1.test -------------------------------------------------------------------------------- /test/writer/tex/mn2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mn2.test -------------------------------------------------------------------------------- /test/writer/tex/mn3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mn3.test -------------------------------------------------------------------------------- /test/writer/tex/mn4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mn4.test -------------------------------------------------------------------------------- /test/writer/tex/mo1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ESymbol Bin "-" , ENumber "1" ] 3 | >>> tex 4 | - 1 5 | -------------------------------------------------------------------------------- /test/writer/tex/mo3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mo3.test -------------------------------------------------------------------------------- /test/writer/tex/mo6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mo6.test -------------------------------------------------------------------------------- /test/writer/tex/mo7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/mo7.test -------------------------------------------------------------------------------- /test/writer/tex/ms1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/ms1.test -------------------------------------------------------------------------------- /test/writer/tex/n.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/n.test -------------------------------------------------------------------------------- /test/writer/tex/o.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/o.test -------------------------------------------------------------------------------- /test/writer/tex/p.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/p.test -------------------------------------------------------------------------------- /test/writer/tex/q.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/q.test -------------------------------------------------------------------------------- /test/writer/tex/r.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/r.test -------------------------------------------------------------------------------- /test/writer/tex/s.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/s.test -------------------------------------------------------------------------------- /test/writer/tex/semantics-01.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "123" ] 3 | >>> tex 4 | 123 5 | -------------------------------------------------------------------------------- /test/writer/tex/span.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/span.test -------------------------------------------------------------------------------- /test/writer/tex/style1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "2" ] 3 | >>> tex 4 | 2 5 | -------------------------------------------------------------------------------- /test/writer/tex/style2.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ESqrt (ENumber "2") ] 3 | >>> tex 4 | \sqrt{2} 5 | -------------------------------------------------------------------------------- /test/writer/tex/sum1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/sum1.test -------------------------------------------------------------------------------- /test/writer/tex/t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/t.test -------------------------------------------------------------------------------- /test/writer/tex/text.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/text.test -------------------------------------------------------------------------------- /test/writer/tex/u.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/u.test -------------------------------------------------------------------------------- /test/writer/tex/v.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/v.test -------------------------------------------------------------------------------- /test/writer/tex/w.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/w.test -------------------------------------------------------------------------------- /test/writer/tex/whBcomments1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ ENumber "5" ] 3 | >>> tex 4 | 5 5 | -------------------------------------------------------------------------------- /test/writer/tex/x.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/x.test -------------------------------------------------------------------------------- /test/writer/tex/xmllang1.test: -------------------------------------------------------------------------------- 1 | <<< native 2 | [ EIdentifier "x" ] 3 | >>> tex 4 | x 5 | -------------------------------------------------------------------------------- /test/writer/tex/y.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/y.test -------------------------------------------------------------------------------- /test/writer/tex/z.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/tex/z.test -------------------------------------------------------------------------------- /test/writer/typst/01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/01.test -------------------------------------------------------------------------------- /test/writer/typst/02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/02.test -------------------------------------------------------------------------------- /test/writer/typst/03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/03.test -------------------------------------------------------------------------------- /test/writer/typst/04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/04.test -------------------------------------------------------------------------------- /test/writer/typst/05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/05.test -------------------------------------------------------------------------------- /test/writer/typst/06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/06.test -------------------------------------------------------------------------------- /test/writer/typst/07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/07.test -------------------------------------------------------------------------------- /test/writer/typst/08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/08.test -------------------------------------------------------------------------------- /test/writer/typst/09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/09.test -------------------------------------------------------------------------------- /test/writer/typst/10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/10.test -------------------------------------------------------------------------------- /test/writer/typst/11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/11.test -------------------------------------------------------------------------------- /test/writer/typst/12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/12.test -------------------------------------------------------------------------------- /test/writer/typst/13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/13.test -------------------------------------------------------------------------------- /test/writer/typst/14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/14.test -------------------------------------------------------------------------------- /test/writer/typst/15.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/15.test -------------------------------------------------------------------------------- /test/writer/typst/16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/16.test -------------------------------------------------------------------------------- /test/writer/typst/17.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/17.test -------------------------------------------------------------------------------- /test/writer/typst/18.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/18.test -------------------------------------------------------------------------------- /test/writer/typst/19.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/19.test -------------------------------------------------------------------------------- /test/writer/typst/20.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/20.test -------------------------------------------------------------------------------- /test/writer/typst/21.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/21.test -------------------------------------------------------------------------------- /test/writer/typst/22.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/test/writer/typst/22.test -------------------------------------------------------------------------------- /texmath.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/texmath/HEAD/texmath.cabal --------------------------------------------------------------------------------