mathematical 1.5.0 → 1.5.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +27 -0
- data/Rakefile +5 -9
- data/ext/README.md +21 -0
- data/ext/mathematical/CMakeLists.txt +76 -0
- data/ext/mathematical/FindNewerRubies.cmake +292 -0
- data/ext/mathematical/FindPackageHandleStandardArgs.cmake +58 -0
- data/ext/mathematical/extconf.rb +38 -18
- data/ext/mathematical/lasem/AUTHORS +1 -0
- data/ext/mathematical/lasem/COPYING +482 -0
- data/ext/mathematical/lasem/{docs/reference/lasem/lasem-overrides.txt → ChangeLog} +0 -0
- data/ext/mathematical/lasem/MAINTAINERS +3 -0
- data/ext/mathematical/lasem/Makefile.am +34 -0
- data/ext/mathematical/lasem/Makefile.decl +57 -0
- data/ext/mathematical/lasem/NEWS +117 -0
- data/ext/mathematical/lasem/README +28 -0
- data/ext/mathematical/lasem/RELEASING +85 -0
- data/ext/mathematical/lasem/TODO +50 -0
- data/ext/mathematical/lasem/autogen.sh +177 -0
- data/ext/mathematical/lasem/configure.ac +139 -0
- data/ext/mathematical/lasem/docs/Makefile.am +14 -0
- data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +106 -0
- data/ext/mathematical/lasem/docs/reference/Makefile.am +3 -0
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +205 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +75 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +64 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +110 -0
- data/ext/mathematical/lasem/itex2mml/COPYING.itex2MML +3 -0
- data/ext/mathematical/lasem/itex2mml/Makefile.am +37 -0
- data/ext/mathematical/lasem/itex2mml/README.itex2MML +13 -0
- data/ext/mathematical/lasem/lasem.doap +21 -0
- data/ext/mathematical/lasem/m4/introspection.m4 +96 -0
- data/ext/mathematical/lasem/po/ChangeLog +0 -0
- data/ext/mathematical/lasem/po/LINGUAS +28 -0
- data/ext/mathematical/lasem/po/POTFILES.in +195 -0
- data/ext/mathematical/lasem/po/POTFILES.skip +1 -0
- data/ext/mathematical/lasem/po/bs.po +65 -0
- data/ext/mathematical/lasem/po/cs.po +70 -0
- data/ext/mathematical/lasem/po/de.po +68 -0
- data/ext/mathematical/lasem/po/el.po +73 -0
- data/ext/mathematical/lasem/po/es.po +78 -0
- data/ext/mathematical/lasem/po/eu.po +66 -0
- data/ext/mathematical/lasem/po/fr.po +65 -0
- data/ext/mathematical/lasem/po/gl.po +64 -0
- data/ext/mathematical/lasem/po/hu.po +76 -0
- data/ext/mathematical/lasem/po/id.po +69 -0
- data/ext/mathematical/lasem/po/it.po +64 -0
- data/ext/mathematical/lasem/po/lt.po +77 -0
- data/ext/mathematical/lasem/po/lv.po +66 -0
- data/ext/mathematical/lasem/po/nb.po +62 -0
- data/ext/mathematical/lasem/po/oc.po +65 -0
- data/ext/mathematical/lasem/po/pl.po +73 -0
- data/ext/mathematical/lasem/po/pt.po +77 -0
- data/ext/mathematical/lasem/po/pt_BR.po +64 -0
- data/ext/mathematical/lasem/po/ru.po +66 -0
- data/ext/mathematical/lasem/po/sl.po +68 -0
- data/ext/mathematical/lasem/po/sr.po +65 -0
- data/ext/mathematical/lasem/po/sr@latin.po +65 -0
- data/ext/mathematical/lasem/po/sv.po +72 -0
- data/ext/mathematical/lasem/po/tg.po +64 -0
- data/ext/mathematical/lasem/po/tr.po +65 -0
- data/ext/mathematical/lasem/po/zh_CN.po +63 -0
- data/ext/mathematical/lasem/src/Makefile.am +349 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmitex.c +0 -1
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/tests/Makefile.am +34 -0
- data/ext/mathematical/lasem/tests/data/mathml/gtkmathview/README +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/closed.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/multiples.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/standard.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/matrices/matrix-01.tex +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-cr.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-space.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/color.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-2.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-inline.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-01.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/accents.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/script.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/stack.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/subscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/bmpCursor.bmp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/brushedMetal.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpeg.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpegCursor.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaBridge.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaSteps.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaWalk.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tde.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tiffCursor.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/CNN.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/SVG-1.1-monolithic-fixed.dtd +1622 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/TraitAccess.common.es +672 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/advice.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/beep.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/boing_x.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/clock.mp4 +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud-ps411q4app.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q25s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q65float.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75p.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud444q65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudgsq75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudoddq65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudqllo.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/copyright-documents-19990405.html +89 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/disco.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/excuse_me.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/externalscript.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/heroesLanding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image2_b.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/myimage.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pacman.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/plant.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image0.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image5.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image6.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image7.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image8.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image9.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script1.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script10.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script2.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script3.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script4.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script5.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script6.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script7.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script8.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script9.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/svgRef4.css +4 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/welcome.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/xmltree.xml +4 -0
- data/ext/mathematical/lasem/tests/fuzztest.sh +12 -0
- data/ext/mathematical/lasem/tests/suite.ini +27 -0
- data/ext/mathematical/lasem/tools/change-license +3 -0
- data/ext/mathematical/lasem/tools/charlist.dtd +73 -0
- data/ext/mathematical/lasem/tools/entities-to-c.xsl +1067 -0
- data/ext/mathematical/lasem/tools/fuzzxml +243 -0
- data/ext/mathematical/lasem/tools/unicode.xml +44303 -0
- data/ext/mathematical/lasem_overrides.c +25 -4
- data/ext/mathematical/lasem_overrides.h +5 -0
- data/ext/mathematical/lib/liblasem.dylib +0 -0
- data/ext/mathematical/mtex2MML/CONTRIBUTING.md +22 -0
- data/ext/mathematical/mtex2MML/README.md +143 -0
- data/ext/mathematical/mtex2MML/SUPPORTED.md +1214 -0
- data/ext/mathematical/mtex2MML/appveyor.yml +25 -0
- data/ext/mathematical/mtex2MML/build.ps1 +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp +375 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +208 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +1137 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +253 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +148 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +251 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +276 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +10 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +683 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +26 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +1 -0
- data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +94 -0
- data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +10 -0
- data/ext/mathematical/mtex2MML/build/parser.output +117661 -0
- data/ext/mathematical/mtex2MML/deps/strdup/package.json +12 -0
- data/ext/mathematical/mtex2MML/deps/uthash/package.json +26 -0
- data/ext/mathematical/mtex2MML/script/bootstrap +30 -0
- data/ext/mathematical/mtex2MML/script/cibuild +11 -0
- data/ext/mathematical/mtex2MML/script/release +27 -0
- data/ext/mathematical/mtex2MML/src/y.output +117655 -0
- data/ext/mathematical/mtex2MML/tests/debug/mtex2MML_debug.cc +21 -0
- data/ext/mathematical/mtex2MML/tests/deps/file2str/package.json +9 -0
- data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-1.html +86 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-2.html +148 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-3.html +188 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/arrows-2.html +156 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-1.html +45 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/buildrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue490.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue877.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue937.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/sideset-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/stackrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/subarray-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/substack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/mathtip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/texttip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/toggle-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/Newextarrow-1.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-2.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-3.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-5.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathbin-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathinner-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathopenclose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathord-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathpunct-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/backslashed-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/remap-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/color-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/colorbox-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-1.html +37 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-2.html +79 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/fcolorbox-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/issue446.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/namedcolors-1.html +70 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue775.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-2.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-4.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-5.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/left-right-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-2.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignedat-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalign-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalignno-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-2.html +64 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-2.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/leqalignno-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/split-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noErrors-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noUndefined-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/above-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/abovewithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atop-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atopwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/binom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/cfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/choose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/genfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/issue969.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/overwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue375.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue856.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1c.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1d.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/boxes-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/llap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/lower-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/mathstrut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveleft-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveright-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/newline-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/phantom-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/raise-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/rlap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/shove-1.html +19 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/smash-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/spaces-1.html +18 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/strut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/vcenter-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-2.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/hebrew-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/begingroup-1.html +15 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/def-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/let-1.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-3.html +50 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-5.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-6.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-7.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/Bbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/bf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/boldsymbol-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/cal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/frak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/it-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathcal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathfrak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathscr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathtt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/pmb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/rm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/scr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/sf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/text-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textbf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/texttt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/tt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/smallmatrix-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-1.html +120 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-3.html +138 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/amounts-1.html +46 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-1.html +235 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-2.html +159 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/basics-1.html +139 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/bonds-1.html +256 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/environments-1.html +81 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/isotopes-1.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/math-1.html +101 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/special_symbols-1.html +176 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Rule-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Tiny-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/class-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/cssId-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/require-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/style-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/unicode-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/LaTeX-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/bbox-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/boxed-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cancel-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cases-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/displaylines-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/enclose-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/functions-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mathsize-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mod-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/not-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/pod-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-2.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/eqref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-2.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/notag-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/binaryops-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/dots-1.html +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/relations-1.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-1.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-2.html +31 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-3.html +40 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-4.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-5.html +56 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-6.html +49 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-2.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-3.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-1.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-2.no_tex +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-1.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-2.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/issue490.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/mathtip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/texttip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/toggle-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/Newextarrow-1.xtex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathbin-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathop-2.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/basic-operators-2.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1a.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1b.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1c.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-2.xtex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/fcolorbox-1.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/issue446.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-1c.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-2a.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/leqalignno-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noErrors-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noUndefined-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1151.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1152-1.xtex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-1.xtex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-2.xtex +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/shove-1.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/begingroup-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/def-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/let-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1a.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1b.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-3.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-5.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-6.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-7.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-3.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/amounts-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-1.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-2.no_tex +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/basics-1.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/bonds-1.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/environments-1.no_tex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/isotopes-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/math-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/special_symbols-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/Rule-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/class-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/cssId-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/require-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/style-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/unicode-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/displaylines-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/style-2.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/eqref-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1a.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1b.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-3.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-1.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-2.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-3.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-4.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/TODO.md +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_nesting.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment_with_hline.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column_with_align.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline_and_hdashline.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_vertical_and_horizontal_dashes.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/augmented_matrix.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/basic_array.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/strip_excess_whitespace_in_array_attributes.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/block.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/comments.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/filter.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/inline.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/strict_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/text_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/broken_up_inline_env.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/some_crazy_alignment.html +24 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/brackets.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_filter.html +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_text_filter.html +27 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/double_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_brackets.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_dollars.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_parens.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/mixed.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/parens.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/single_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_ex_spacing.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/spaces_after_rowsep.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/max_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_equations.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_notag_nonumber.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_equation.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_nonumber.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_notag.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/performance/big_file.html +12 -0
- data/ext/mathematical/mtex2MML/tests/generate.py +244 -0
- data/ext/mathematical/mtex2MML/tests/mathjax_generate.py +72 -0
- data/lib/mathematical/version.rb +1 -1
- data/mathematical.gemspec +1 -3
- metadata +699 -23
- data/ext/mathematical/lasem/Makefile +0 -1037
- data/ext/mathematical/lasem/config.h +0 -87
- data/ext/mathematical/lasem/docs/Makefile +0 -793
- data/ext/mathematical/lasem/docs/reference/Makefile +0 -735
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile +0 -1029
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl-list.txt +0 -245
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl.txt +0 -856
- data/ext/mathematical/lasem/itex2mml/Makefile +0 -742
- data/ext/mathematical/lasem/itex2mml/lex.yy.c +0 -6294
- data/ext/mathematical/lasem/itex2mml/y.tab.c +0 -5796
- data/ext/mathematical/lasem/itex2mml/y.tab.h +0 -378
- data/ext/mathematical/lasem/po/Makefile +0 -413
- data/ext/mathematical/lasem/src/Makefile +0 -1343
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c +0 -99
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h +0 -26
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +0 -793
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +0 -96
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +0 -1254
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +0 -129
- data/ext/mathematical/lasem/tests/Makefile +0 -776
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1a.html
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex 0.5ex" rowlines="none none none"><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mi>a</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>b</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>c</mi></mtd></mlabeledtr> <mlabeledtr><mtd><mtext>(2)</mtext></mtd><mtd><mi>d</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>e</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>f</mi></mtd></mlabeledtr> <mlabeledtr><mtd><mtext>(3)</mtext></mtd><mtd><mi>g</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>h</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>i</mi></mtd></mlabeledtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{align}
|
3
|
+
a & = & b & + & c \\
|
4
|
+
d & = & e & + & f \\
|
5
|
+
g & = & h & + & i
|
6
|
+
\end{align}
|
7
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1b.html
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex 0.5ex" rowlines="none none none"><mtr><mtd><mi>a</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>b</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>c</mi></mtd></mtr> <mtr><mtd><mi>d</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>e</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>f</mi></mtd></mtr> <mtr><mtd><mi>g</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>h</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>i</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{align*}
|
3
|
+
a & = & b & + & c \\
|
4
|
+
d & = & e & + & f \\
|
5
|
+
g & = & h & + & i
|
6
|
+
\end{align*}
|
7
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1a.html
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnalign="right left" columnspacing="0em" rowspacing="3pt 3pt" rowlines="none none"><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mi></mi><mi>x</mi></mtd> <mtd><mi></mi><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mn>2</mn></mtd></mlabeledtr> <mlabeledtr><mtd><mtext>(2)</mtext></mtd><mtd></mtd> <mtd><mi></mi><mo>=</mo><mn>3</mn></mtd></mlabeledtr> <mtr><mtd></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{alignat}{1}
|
3
|
+
x &= 1 + 2 \\
|
4
|
+
&= 3 \\
|
5
|
+
\end{alignat}
|
6
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1b.html
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnalign="right left" columnspacing="0em" rowspacing="3pt" rowlines="none none"><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mi></mi><mi>a</mi></mtd> <mtd><mi></mi><mo>=</mo><mi>b</mi><mi>b</mi><mi>b</mi></mtd> <mtd><mi></mi><mi>b</mi><mi>b</mi><mi>b</mi></mtd> <mtd><mi></mi><mo>=</mo><mi>c</mi></mtd> <mtd><mi></mi><mi>c</mi></mtd> <mtd><mi></mi><mo>=</mo><mi>d</mi></mtd></mlabeledtr> <mlabeledtr><mtd><mtext>(2)</mtext></mtd><mtd><mi></mi><mi>a</mi><mi>a</mi><mi>a</mi></mtd> <mtd><mi></mi><mo>=</mo><mi>b</mi><mi>b</mi></mtd> <mtd><mi></mi><mi>b</mi><mi>b</mi></mtd> <mtd><mi></mi><mo>=</mo><mi>c</mi><mi>c</mi><mi>c</mi></mtd> <mtd><mi></mi><mi>c</mi><mi>c</mi><mi>c</mi></mtd> <mtd><mi></mi><mo>=</mo><mi>d</mi><mi>d</mi><mi>d</mi></mtd></mlabeledtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{alignat}{3}
|
3
|
+
a &= bbb&bbb &= c&c &= d \\
|
4
|
+
aaa &= bb&bb &= ccc&ccc &= ddd
|
5
|
+
\end{alignat}
|
6
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-1.html
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mtable><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="3pt 3pt" rowlines="none none none"><mtr><mtd><mi>a</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>b</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>c</mi></mtd></mtr> <mtr><mtd><mi>d</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>e</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>f</mi></mtd></mtr> <mtr><mtd><mi>g</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>h</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>i</mi></mtd></mtr></mtable></mrow></mtd></mlabeledtr></mtable></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{equation}
|
3
|
+
\begin{aligned}
|
4
|
+
a & = & b & + & c \\
|
5
|
+
d & = & e & + & f \\
|
6
|
+
g & = & h & + & i
|
7
|
+
\end{aligned}
|
8
|
+
\end{equation}
|
9
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-2.html
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mtable><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mrow><mtable displaystyle="true" align="baseline 1" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="3pt 3pt" rowlines="none none none"><mtr><mtd><mi>a</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>b</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>c</mi></mtd></mtr> <mtr><mtd><mi>d</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>e</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>f</mi></mtd></mtr> <mtr><mtd><mi>g</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>h</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>i</mi></mtd></mtr></mtable></mrow><mrow><mtable displaystyle="true" align="baseline -1" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="3pt 3pt" rowlines="none none none"><mtr><mtd><mi>a</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>b</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>c</mi></mtd></mtr> <mtr><mtd><mi>d</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>e</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>f</mi></mtd></mtr> <mtr><mtd><mi>g</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>h</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>i</mi></mtd></mtr></mtable></mrow></mtd></mlabeledtr></mtable></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{equation}
|
3
|
+
\begin{aligned}[t]
|
4
|
+
a & = & b & + & c \\
|
5
|
+
d & = & e & + & f \\
|
6
|
+
g & = & h & + & i
|
7
|
+
\end{aligned}
|
8
|
+
\begin{aligned}[b]
|
9
|
+
a & = & b & + & c \\
|
10
|
+
d & = & e & + & f \\
|
11
|
+
g & = & h & + & i
|
12
|
+
\end{aligned}
|
13
|
+
\end{equation}
|
14
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mtable><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mrow><mtable displaystyle="true" columnalign="right left right left right left right left right left" columnspacing="0em" rowspacing="0.5ex 0.5ex" rowlines="none none"><mtr><mtd><mi>x</mi></mtd> <mtd><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mn>2</mn></mtd></mtr> <mtr><mtd></mtd> <mtd><mo>=</mo><mn>3</mn></mtd></mtr> <mtr><mtd></mtd></mtr></mtable></mrow></mtd></mlabeledtr></mtable></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{equation}
|
3
|
+
\begin{alignedat}{1}
|
4
|
+
x &= 1 + 2 \\
|
5
|
+
&= 3 \\
|
6
|
+
\end{alignedat}
|
7
|
+
\end{equation}
|
8
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalign-1.html
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mtable><mtr><mtd><mtable columnalign="right left" rowspacing=".5em" columnspacing="thickmathspace" displaystyle="true"><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mi>a</mi></mtd> <mtd><mo>=</mo><mi>b</mi></mtd></mlabeledtr> <mtr><mtd><mi>c</mi></mtd> <mtd><mo>=</mo><mi>d</mi></mtd></mtr></mtable></mrow></mrow></mtd></mtr></mtable></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{equation}
|
3
|
+
\eqalign{
|
4
|
+
a &= b \\
|
5
|
+
c &= d
|
6
|
+
}
|
7
|
+
\end{equation}
|
8
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mtable><mtr><mtd><mtable columnalign="right left right" rowspacing=".5em" columnspacing="thickmathspace 3em" displaystyle="true"><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mi>a</mi></mtd> <mtd><mo>=</mo><mi>b</mi></mtd></mlabeledtr> <mtr><mtd><mi>c</mi></mtd> <mtd><mo>=</mo><mi>d</mi></mtd></mtr></mtable></mrow></mrow></mtd></mtr></mtable></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{equation}
|
3
|
+
\eqalignno{
|
4
|
+
a &= b \\
|
5
|
+
c &= d
|
6
|
+
}
|
7
|
+
\end{equation}
|
8
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnalign="right center left" columnspacing="thickmathspace" rowspacing="3pt 3pt" rowlines="none none none"><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mi>a</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>b</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>c</mi></mtd></mlabeledtr> <mlabeledtr><mtd><mtext>(2)</mtext></mtd><mtd><mi>d</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>e</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>f</mi></mtd></mlabeledtr> <mlabeledtr><mtd><mtext>(3)</mtext></mtd><mtd><mi>g</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>h</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>i</mi></mtd></mlabeledtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{eqnarray}
|
3
|
+
a & = & b & + & c \\
|
4
|
+
d & = & e & + & f \\
|
5
|
+
g & = & h & + & i
|
6
|
+
\end{eqnarray}
|
7
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnalign="right center left" columnspacing="thickmathspace" rowspacing="3pt 3pt" rowlines="none none none"><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mi>a</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>b</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>c</mi></mtd></mlabeledtr> <mlabeledtr><mtd><mtext>(2)</mtext></mtd><mtd><mi>d</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>e</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>f</mi></mtd></mlabeledtr> <mlabeledtr><mtd><mtext>(3)</mtext></mtd><mtd><mi>g</mi></mtd> <mtd><mo>=</mo></mtd> <mtd><mi>h</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo></mtd> <mtd><mi>i</mi></mtd></mlabeledtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{eqnarray*}
|
3
|
+
a & = & b & + & c \\
|
4
|
+
d & = & e & + & f \\
|
5
|
+
g & = & h & + & i
|
6
|
+
\end{eqnarray*}
|
7
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-2.html
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
2
|
+
<mtable columnalign="right center left" rowspacing="3pt" columnspacing="thickmathspace" displaystyle="true" side="right" minlabelspacing=".8em">
|
3
|
+
<mlabeledtr>
|
4
|
+
<mtd id="mjx-eqn-1">
|
5
|
+
<mtext>(1)</mtext>
|
6
|
+
</mtd>
|
7
|
+
<mtd>
|
8
|
+
<mi>a</mi>
|
9
|
+
</mtd>
|
10
|
+
<mtd>
|
11
|
+
<mo form="infix" lspace=".2222em">=</mo>
|
12
|
+
</mtd>
|
13
|
+
<mtd>
|
14
|
+
<mi>b</mi>
|
15
|
+
</mtd>
|
16
|
+
<mtd>
|
17
|
+
<mo form="infix" lspace=".2222em">+</mo>
|
18
|
+
</mtd>
|
19
|
+
<mtd>
|
20
|
+
<mi>c</mi>
|
21
|
+
</mtd>
|
22
|
+
</mlabeledtr>
|
23
|
+
<mlabeledtr>
|
24
|
+
<mtd id="mjx-eqn-2">
|
25
|
+
<mtext>(2)</mtext>
|
26
|
+
</mtd>
|
27
|
+
<mtd>
|
28
|
+
<mi>d</mi>
|
29
|
+
</mtd>
|
30
|
+
<mtd>
|
31
|
+
<mo form="infix" lspace=".2222em">=</mo>
|
32
|
+
</mtd>
|
33
|
+
<mtd>
|
34
|
+
<mi>e</mi>
|
35
|
+
</mtd>
|
36
|
+
<mtd>
|
37
|
+
<mo form="infix" lspace=".2222em">+</mo>
|
38
|
+
</mtd>
|
39
|
+
<mtd>
|
40
|
+
<mi>f</mi>
|
41
|
+
</mtd>
|
42
|
+
</mlabeledtr>
|
43
|
+
<mlabeledtr>
|
44
|
+
<mtd id="mjx-eqn-3">
|
45
|
+
<mtext>(3)</mtext>
|
46
|
+
</mtd>
|
47
|
+
<mtd>
|
48
|
+
<mi>g</mi>
|
49
|
+
</mtd>
|
50
|
+
<mtd>
|
51
|
+
<mo form="infix" lspace=".2222em">=</mo>
|
52
|
+
</mtd>
|
53
|
+
<mtd>
|
54
|
+
<mi>h</mi>
|
55
|
+
</mtd>
|
56
|
+
<mtd>
|
57
|
+
<mo form="infix" lspace=".2222em">+</mo>
|
58
|
+
</mtd>
|
59
|
+
<mtd>
|
60
|
+
<mi>i</mi>
|
61
|
+
</mtd>
|
62
|
+
</mlabeledtr>
|
63
|
+
</mtable>
|
64
|
+
</math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-1.html
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mtable><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><menclose notation="box"><mrow><msup><mi>x</mi> <mn>2</mn></msup><mo>+</mo><msup><mi>y</mi> <mn>2</mn></msup><mo>=</mo><msup><mi>z</mi> <mn>2</mn></msup></mrow></menclose></mtd></mlabeledtr></mtable></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{equation}
|
3
|
+
\boxed{x^2+y^2 = z^2}
|
4
|
+
\end{equation}
|
5
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-2.html
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mtable><mtr><mtd><msup><mi>e</mi> <mrow><mi>i</mi><mi>x</mi></mrow></msup><mo>=</mo><mi>cos</mi><mi>x</mi><mo>+</mo><mi>i</mi><mi>sin</mi><mi>x</mi></mtd></mtr></mtable></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{equation*}
|
3
|
+
e^{ix} = \cos{x} + i \sin{x}
|
4
|
+
\end{equation*}
|
5
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1a.html
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" rowspacing="0.5ex 0.5ex" rowlines="none none none"><mtr><mtd><mi>a</mi><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>x</mi><mo>+</mo><mi>y</mi></mtd></mtr> <mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mi>d</mi><mo>=</mo><mn>4</mn><mo lspace="verythinmathspace" rspace="0em">−</mo><mi>y</mi></mtd></mlabeledtr> <mtr><mtd><mi>g</mi><mo>=</mo><mn>2</mn><mi>x</mi><mo>−</mo><mn>5</mn><mi>y</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{gather}
|
3
|
+
a = 1 + x + y \\
|
4
|
+
d = 4 - y \\
|
5
|
+
g = 2x - 5y
|
6
|
+
\end{gather}
|
7
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1b.html
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" rowspacing="0.5ex 0.5ex" rowlines="none none none"><mtr><mtd><mi>a</mi><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>x</mi><mo>+</mo><mi>y</mi></mtd></mtr> <mtr><mtd><mi>d</mi><mo>=</mo><mn>4</mn><mo lspace="verythinmathspace" rspace="0em">−</mo><mi>y</mi></mtd></mtr> <mtr><mtd><mi>g</mi><mo>=</mo><mn>2</mn><mi>x</mi><mo>−</mo><mn>5</mn><mi>y</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{gather*}
|
3
|
+
a = 1 + x + y \\
|
4
|
+
d = 4 - y \\
|
5
|
+
g = 2x - 5y
|
6
|
+
\end{gather*}
|
7
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-1.html
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" rowspacing="1.0ex 1.0ex" rowlines="none none none"><mtr><mtd><mi>a</mi><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>x</mi><mo>+</mo><mi>y</mi></mtd></mtr> <mtr><mtd><mi>d</mi><mo>=</mo><mn>4</mn><mo lspace="verythinmathspace" rspace="0em">−</mo><mi>y</mi></mtd></mtr> <mtr><mtd><mi>g</mi><mo>=</mo><mn>2</mn><mi>x</mi><mo>−</mo><mn>5</mn><mi>y</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{gathered}
|
3
|
+
a = 1 + x + y \\
|
4
|
+
d = 4 - y \\
|
5
|
+
g = 2x - 5y
|
6
|
+
\end{gathered}
|
7
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-2.html
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" align="baseline 1" rowspacing="1.0ex 1.0ex" rowlines="none none none"><mtr><mtd><mi>a</mi><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>x</mi><mo>+</mo><mi>y</mi></mtd></mtr> <mtr><mtd><mi>d</mi><mo>=</mo><mn>4</mn><mo lspace="verythinmathspace" rspace="0em">−</mo><mi>y</mi></mtd></mtr> <mtr><mtd><mi>g</mi><mo>=</mo><mn>2</mn><mi>x</mi><mo>−</mo><mn>5</mn><mi>y</mi></mtd></mtr></mtable></mrow><mrow><mtable displaystyle="true" align="baseline -1" rowspacing="1.0ex 1.0ex" rowlines="none none none"><mtr><mtd><mi>a</mi><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>x</mi><mo>+</mo><mi>y</mi></mtd></mtr> <mtr><mtd><mi>d</mi><mo>=</mo><mn>4</mn><mo lspace="verythinmathspace" rspace="0em">−</mo><mi>y</mi></mtd></mtr> <mtr><mtd><mi>g</mi><mo>=</mo><mn>2</mn><mi>x</mi><mo>−</mo><mn>5</mn><mi>y</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{gathered}[t]
|
3
|
+
a = 1 + x + y \\
|
4
|
+
d = 4 - y \\
|
5
|
+
g = 2x - 5y
|
6
|
+
\end{gathered}
|
7
|
+
\begin{gathered}[b]
|
8
|
+
a = 1 + x + y \\
|
9
|
+
d = 4 - y \\
|
10
|
+
g = 2x - 5y
|
11
|
+
\end{gathered}
|
12
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex" rowlines="none"><mtr><mtd><mi>a</mi></mtd> <mtd><mo>=</mo><mi>b</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{aligned}
|
3
|
+
a&=b
|
4
|
+
\end{aligned}
|
5
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex" rowlines="none"><mtr><mtd><mi>a</mi></mtd> <mtd><mrow/><mo>=</mo><mi>b</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{aligned}
|
3
|
+
a&{}=b
|
4
|
+
\end{aligned}
|
5
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex" rowlines="none"><mtr><mtd><mi>a</mi></mtd> <mtd><mi>b</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{aligned}
|
3
|
+
a&b
|
4
|
+
\end{aligned}
|
5
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex" rowlines="none"><mtr><mtd><mi>a</mi><mi>b</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{aligned}
|
3
|
+
ab
|
4
|
+
\end{aligned}
|
5
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex" rowlines="none"><mtr><mtd><mi>a</mi></mtd> <mtd><mo>=</mo><mi>b</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{aligned}
|
3
|
+
a&=b
|
4
|
+
\end{aligned}
|
5
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex" rowlines="none"><mtr><mtd><mi>a</mi></mtd> <mtd><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>b</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{aligned}
|
3
|
+
a&+b
|
4
|
+
\end{aligned}
|
5
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
2
|
+
<mtable columnalign="right left right" rowspacing=".5em" columnspacing="thickmathspace 3em" displaystyle="true">
|
3
|
+
<mtr>
|
4
|
+
<mtd><mi>a</mi></mtd>
|
5
|
+
<mtd><mo>=</mo><mi>b</mi></mtd>
|
6
|
+
</mtr>
|
7
|
+
<mtr>
|
8
|
+
<mtd><mi>c</mi></mtd><mtd><mo>=</mo><mi>d</mi></mtd>
|
9
|
+
</mtr>
|
10
|
+
</mtable>
|
11
|
+
</math>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" rowspacing="0.5em 0.5em" rowlines="none none none"><mtr><mtd columnalign="left"><mi>exp</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>x</mi><mo>+</mo><mi>⋯</mi></mtd></mtr> <mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd columnalign="center"><mfrac><mrow><msup><mi>x</mi> <mn>4</mn></msup></mrow><mn>4</mn></mfrac><mo>+</mo><mfrac><mrow><msup><mi>x</mi> <mn>5</mn></msup></mrow><mrow><mn>5</mn><mo>!</mo></mrow></mfrac><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>⋯</mi></mtd></mlabeledtr> <mtr><mtd columnalign="right"><mi>⋯</mi><mo>+</mo><mfrac><mrow><msup><mi>x</mi> <mi>n</mi></msup></mrow><mrow><mi>n</mi><mo>!</mo></mrow></mfrac><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>⋯</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{multline}
|
3
|
+
\exp(x) = 1 + x + \cdots \\
|
4
|
+
\frac{x^4}4 + \frac{x^5}{5!} + \cdots \\
|
5
|
+
\cdots + \frac{x^n}{n!} + \cdots
|
6
|
+
\end{multline}
|
7
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mtable displaystyle="true" columnwidth="100%" width="85%" rowspacing="0.5em 0.5em" rowlines="none none none"><mtr><mtd columnalign="left"><mi>exp</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mn>1</mn><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>x</mi><mo>+</mo><mi>⋯</mi></mtd></mtr> <mtr><mtd columnalign="center"><mfrac><mrow><msup><mi>x</mi> <mn>4</mn></msup></mrow><mn>4</mn></mfrac><mo>+</mo><mfrac><mrow><msup><mi>x</mi> <mn>5</mn></msup></mrow><mrow><mn>5</mn><mo>!</mo></mrow></mfrac><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>⋯</mi></mtd></mtr> <mtr><mtd columnalign="right"><mi>⋯</mi><mo>+</mo><mfrac><mrow><msup><mi>x</mi> <mi>n</mi></msup></mrow><mrow><mi>n</mi><mo>!</mo></mrow></mfrac><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>⋯</mi></mtd></mtr></mtable></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{multline*}
|
3
|
+
\exp(x) = 1 + x + \cdots \\
|
4
|
+
\frac{x^4}4 + \frac{x^5}{5!} + \cdots \\
|
5
|
+
\cdots + \frac{x^n}{n!} + \cdots
|
6
|
+
\end{multline*}
|
7
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/split-1.html
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mtable><mlabeledtr><mtd><mtext>(1)</mtext></mtd><mtd><mrow><mtable displaystyle="true" columnspacing="0em 2em 0em 2em 0em 2em 0em 2em 0em 2em 0em" columnalign="right left right left right left right left right left" rowspacing="0.5ex 0.5ex" rowlines="none none none"><mtr><mtd><mi>a</mi></mtd> <mtd><mo>=</mo><mi>b</mi><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>c</mi></mtd></mtr> <mtr><mtd></mtd> <mtd><mo>=</mo><mi>d</mi><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>e</mi></mtd></mtr> <mtr><mtd></mtd> <mtd><mo>=</mo><mi>f</mi><mo lspace="verythinmathspace" rspace="0em">+</mo><mi>g</mi></mtd></mtr></mtable></mrow></mtd></mlabeledtr></mtable></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\begin{equation}
|
3
|
+
\begin{split}
|
4
|
+
a &= b + c \\
|
5
|
+
&= d + e \\
|
6
|
+
&= f + g
|
7
|
+
\end{split}
|
8
|
+
\end{equation}
|
9
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/abovewithdelims-1.html
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mo fence="true" stretchy="true">(</mo><mfrac linethickness="0.4pt"><mi>a</mi><mi>b</mi></mfrac><mo fence="true" stretchy="true">]</mo></mrow><annotation encoding='application/x-tex'>
|
2
|
+
a\abovewithdelims(]0.4pt b
|
3
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atopwithdelims-1.html
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mo fence="true" stretchy="true">(</mo><mfrac linethickness="0"><mi>a</mi><mi>b</mi></mfrac><mo fence="true" stretchy="true">]</mo></mrow><annotation encoding='application/x-tex'>
|
2
|
+
a\atopwithdelims(] b
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mo maxsize="2.047em" minsize="2.047em">(</mo><mfrac linethickness="0"><mn>1</mn><mn>2</mn></mfrac><mo maxsize="2.047em" minsize="2.047em">)</mo></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\binom 1 2
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mo maxsize="2.047em" minsize="2.047em">{</mo><mfrac linethickness="0"><mn>1</mn><mn>2</mn></mfrac><mo maxsize="2.047em" minsize="2.047em">}</mo></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
1 \brace 2
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mo maxsize="2.047em" minsize="2.047em">[</mo><mfrac linethickness="0"><mn>1</mn><mn>2</mn></mfrac><mo maxsize="2.047em" minsize="2.047em">]</mo></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
1 \brack 2
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mfrac><mrow><mpadded width="0" height="8.6pt" depth="3pt"><mrow /></mpadded><mstyle displaystyle="false" scriptlevel="0"><mrow><mn>2</mn></mrow></mstyle></mrow><mrow><mpadded width="0" height="8.6pt" depth="3pt"><mrow /></mpadded><mstyle displaystyle="false" scriptlevel="0"><mrow><mrow><mn>1</mn><mo>+</mo><mfrac><mrow><mpadded width="0" height="8.6pt" depth="3pt"><mrow /></mpadded><mstyle displaystyle="false" scriptlevel="0"><mrow><mn>2</mn></mrow></mstyle></mrow><mrow><mpadded width="0" height="8.6pt" depth="3pt"><mrow /></mpadded><mstyle displaystyle="false" scriptlevel="0"><mrow><mrow><mn>1</mn><mo>+</mo><mfrac><mrow><mpadded width="0" height="8.6pt" depth="3pt"><mrow /></mpadded><mstyle displaystyle="false" scriptlevel="0"><mrow><mn>2</mn></mrow></mstyle></mrow><mrow><mpadded width="0" height="8.6pt" depth="3pt"><mrow /></mpadded><mstyle displaystyle="false" scriptlevel="0"><mrow><mrow><mn>1</mn><mo>+</mo><mfrac><mrow><mpadded width="0" height="8.6pt" depth="3pt"><mrow /></mpadded><mstyle displaystyle="false" scriptlevel="0"><mrow><mn>2</mn></mrow></mstyle></mrow><mrow><mpadded width="0" height="8.6pt" depth="3pt"><mrow /></mpadded><mstyle displaystyle="false" scriptlevel="0"><mrow><mn>1</mn></mrow></mstyle></mrow></mfrac></mrow></mrow></mstyle></mrow></mfrac></mrow></mrow></mstyle></mrow></mfrac></mrow></mrow></mstyle></mrow></mfrac></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\cfrac{2}{1+\cfrac{2}{1+\cfrac{2}{1+\cfrac{2}{1}}}}
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mrow><mo maxsize="2.047em" minsize="2.047em">(</mo></mrow><mfrac linethickness="0"><mn>1</mn><mn>2</mn></mfrac><mrow><mo maxsize="2.047em" minsize="2.047em">)</mo></mrow></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
1 \choose 2
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mstyle displaystyle="true" scriptlevel="0"><mrow><mo maxsize="2.047em" minsize="2.047em">(</mo><mfrac linethickness="0"><mn>1</mn><mn>2</mn></mfrac><mo maxsize="2.047em" minsize="2.047em">)</mo></mrow></mstyle></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\dbinom 1 2
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mstyle displaystyle="true" scriptlevel="0"><mrow><mrow><mo maxsize="2.047em" minsize="2.047em">[</mo></mrow><mfrac linethickness="5pt"><mn>1</mn><mn>2</mn></mfrac><mrow><mo maxsize="2.047em" minsize="2.047em">]</mo></mrow></mrow></mstyle></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\genfrac{[}{]}{5pt}{0}{1}{2}
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mo lspace="verythinmathspace" rspace="0em">−</mo><mfrac><mn>1</mn><mn>2</mn></mfrac></mrow><annotation encoding='application/x-tex'>
|
2
|
+
-\frac{1}{2}
|
3
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/overwithdelims-1.html
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mo fence="true" stretchy="true">(</mo><mfrac><mi>a</mi><mi>b</mi></mfrac><mo fence="true" stretchy="true">]</mo></mrow><annotation encoding='application/x-tex'>
|
2
|
+
a \overwithdelims(] b
|
3
|
+
</annotation></semantics></math>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mrow><mo maxsize="2.047em" minsize="2.047em">(</mo><mstyle displaystyle="false"><mfrac linethickness="0"><mn>1</mn><mn>2</mn></mfrac></mstyle><mo maxsize="2.047em" minsize="2.047em">)</mo></mrow></mrow><annotation encoding='application/x-tex'>
|
2
|
+
\tbinom 1 2
|
3
|
+
</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-1.html
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><mstyle displaystyle="true" scriptlevel="0"><mrow><munder><mo>∑</mo> <mi>n</mi></munder></mrow></mstyle></mrow><annotation encoding='application/x-tex'>\displaystyle \sum_n</annotation></semantics></math>
|
data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-2.html
ADDED
@@ -0,0 +1,4 @@
|
|
1
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><semantics><mrow><msup><mn>2</mn> <mtext><mrow><mi>x</mi><mi>x</mi></mrow></mtext></msup><msup><mn>2</mn> <mtext><mi>x</mi></mtext></msup><mi>x</mi></mrow><annotation encoding='application/x-tex'>
|
2
|
+
2^\hbox{xx}
|
3
|
+
2^\hbox{x}{x}
|
4
|
+
</annotation></semantics></math>
|