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
@@ -1,99 +0,0 @@
|
|
1
|
-
|
2
|
-
/* Generated data (by glib-mkenums) */
|
3
|
-
|
4
|
-
#include "lsmdomenumtypes.h"
|
5
|
-
|
6
|
-
/* enumerations from "lsmdebug.h" */
|
7
|
-
#include "lsmdebug.h"
|
8
|
-
|
9
|
-
GType
|
10
|
-
lsm_debug_level_get_type (void)
|
11
|
-
{
|
12
|
-
static GType the_type = 0;
|
13
|
-
|
14
|
-
if (the_type == 0)
|
15
|
-
{
|
16
|
-
static const GEnumValue values[] = {
|
17
|
-
{ LSM_DEBUG_LEVEL_NONE,
|
18
|
-
"LSM_DEBUG_LEVEL_NONE",
|
19
|
-
"none" },
|
20
|
-
{ LSM_DEBUG_LEVEL_WARNING,
|
21
|
-
"LSM_DEBUG_LEVEL_WARNING",
|
22
|
-
"warning" },
|
23
|
-
{ LSM_DEBUG_LEVEL_DEBUG,
|
24
|
-
"LSM_DEBUG_LEVEL_DEBUG",
|
25
|
-
"debug" },
|
26
|
-
{ LSM_DEBUG_LEVEL_LOG,
|
27
|
-
"LSM_DEBUG_LEVEL_LOG",
|
28
|
-
"log" },
|
29
|
-
{ LSM_DEBUG_LEVEL_COUNT,
|
30
|
-
"LSM_DEBUG_LEVEL_COUNT",
|
31
|
-
"count" },
|
32
|
-
{ 0, NULL, NULL }
|
33
|
-
};
|
34
|
-
the_type = g_enum_register_static (
|
35
|
-
g_intern_static_string ("LsmDebugLevel"),
|
36
|
-
values);
|
37
|
-
}
|
38
|
-
return the_type;
|
39
|
-
}
|
40
|
-
|
41
|
-
/* enumerations from "lsmdomnode.h" */
|
42
|
-
#include "lsmdomnode.h"
|
43
|
-
|
44
|
-
GType
|
45
|
-
lsm_dom_node_type_get_type (void)
|
46
|
-
{
|
47
|
-
static GType the_type = 0;
|
48
|
-
|
49
|
-
if (the_type == 0)
|
50
|
-
{
|
51
|
-
static const GEnumValue values[] = {
|
52
|
-
{ LSM_DOM_NODE_TYPE_ELEMENT_NODE,
|
53
|
-
"LSM_DOM_NODE_TYPE_ELEMENT_NODE",
|
54
|
-
"element-node" },
|
55
|
-
{ LSM_DOM_NODE_TYPE_ATTRIBUTE_NODE,
|
56
|
-
"LSM_DOM_NODE_TYPE_ATTRIBUTE_NODE",
|
57
|
-
"attribute-node" },
|
58
|
-
{ LSM_DOM_NODE_TYPE_TEXT_NODE,
|
59
|
-
"LSM_DOM_NODE_TYPE_TEXT_NODE",
|
60
|
-
"text-node" },
|
61
|
-
{ LSM_DOM_NODE_TYPE_CDATA_SECTION_NODE,
|
62
|
-
"LSM_DOM_NODE_TYPE_CDATA_SECTION_NODE",
|
63
|
-
"cdata-section-node" },
|
64
|
-
{ LSM_DOM_NODE_TYPE_ENTITY_REFERENCE_NODE,
|
65
|
-
"LSM_DOM_NODE_TYPE_ENTITY_REFERENCE_NODE",
|
66
|
-
"entity-reference-node" },
|
67
|
-
{ LSM_DOM_NODE_TYPE_ENTITY_NODE,
|
68
|
-
"LSM_DOM_NODE_TYPE_ENTITY_NODE",
|
69
|
-
"entity-node" },
|
70
|
-
{ LSM_DOM_NODE_TYPE_PROCESSING_INSTRUCTION_NODE,
|
71
|
-
"LSM_DOM_NODE_TYPE_PROCESSING_INSTRUCTION_NODE",
|
72
|
-
"processing-instruction-node" },
|
73
|
-
{ LSM_DOM_NODE_TYPE_COMMENT_NODE,
|
74
|
-
"LSM_DOM_NODE_TYPE_COMMENT_NODE",
|
75
|
-
"comment-node" },
|
76
|
-
{ LSM_DOM_NODE_TYPE_DOCUMENT_NODE,
|
77
|
-
"LSM_DOM_NODE_TYPE_DOCUMENT_NODE",
|
78
|
-
"document-node" },
|
79
|
-
{ LSM_DOM_NODE_TYPE_DOCUMENT_TYPE_NODE,
|
80
|
-
"LSM_DOM_NODE_TYPE_DOCUMENT_TYPE_NODE",
|
81
|
-
"document-type-node" },
|
82
|
-
{ LSM_DOM_NODE_TYPE_DOCUMENT_FRAGMENT_NODE,
|
83
|
-
"LSM_DOM_NODE_TYPE_DOCUMENT_FRAGMENT_NODE",
|
84
|
-
"document-fragment-node" },
|
85
|
-
{ LSM_DOM_NODE_TYPE_NOTATION_NODE,
|
86
|
-
"LSM_DOM_NODE_TYPE_NOTATION_NODE",
|
87
|
-
"notation-node" },
|
88
|
-
{ 0, NULL, NULL }
|
89
|
-
};
|
90
|
-
the_type = g_enum_register_static (
|
91
|
-
g_intern_static_string ("LsmDomNodeType"),
|
92
|
-
values);
|
93
|
-
}
|
94
|
-
return the_type;
|
95
|
-
}
|
96
|
-
|
97
|
-
|
98
|
-
/* Generated data ends here */
|
99
|
-
|
@@ -1,26 +0,0 @@
|
|
1
|
-
|
2
|
-
/* Generated data (by glib-mkenums) */
|
3
|
-
|
4
|
-
#ifndef LSM_DOM_ENUM_TYPES_H
|
5
|
-
#define LSM_DOM_ENUM_TYPES_H
|
6
|
-
|
7
|
-
#include <glib-object.h>
|
8
|
-
|
9
|
-
G_BEGIN_DECLS
|
10
|
-
|
11
|
-
/* Enumerations from "lsmdebug.h" */
|
12
|
-
|
13
|
-
#define LSM_TYPE_DEBUG_LEVEL (lsm_debug_level_get_type())
|
14
|
-
GType lsm_debug_level_get_type (void) G_GNUC_CONST;
|
15
|
-
|
16
|
-
/* Enumerations from "lsmdomnode.h" */
|
17
|
-
|
18
|
-
#define LSM_TYPE_DOM_NODE_TYPE (lsm_dom_node_type_get_type())
|
19
|
-
GType lsm_dom_node_type_get_type (void) G_GNUC_CONST;
|
20
|
-
|
21
|
-
G_END_DECLS
|
22
|
-
|
23
|
-
#endif /* LSM_DOM_ENUM_TYPES_H */
|
24
|
-
|
25
|
-
/* Generated data ends here */
|
26
|
-
|
@@ -1,793 +0,0 @@
|
|
1
|
-
|
2
|
-
/* Generated data (by glib-mkenums) */
|
3
|
-
|
4
|
-
#include "lsmmathmlenumtypes.h"
|
5
|
-
|
6
|
-
/* enumerations from "lsmmathmlenums.h" */
|
7
|
-
#include "lsmmathmlenums.h"
|
8
|
-
|
9
|
-
GType
|
10
|
-
lsm_mathml_css_type_get_type (void)
|
11
|
-
{
|
12
|
-
static GType the_type = 0;
|
13
|
-
|
14
|
-
if (the_type == 0)
|
15
|
-
{
|
16
|
-
static const GEnumValue values[] = {
|
17
|
-
{ LSM_MATHML_CSS_TYPE_USER,
|
18
|
-
"LSM_MATHML_CSS_TYPE_USER",
|
19
|
-
"user" },
|
20
|
-
{ LSM_MATHML_CSS_TYPE_AUTHOR,
|
21
|
-
"LSM_MATHML_CSS_TYPE_AUTHOR",
|
22
|
-
"author" },
|
23
|
-
{ LSM_MATHML_CSS_TYPE_AUTHOR_IMPORTANT,
|
24
|
-
"LSM_MATHML_CSS_TYPE_AUTHOR_IMPORTANT",
|
25
|
-
"author-important" },
|
26
|
-
{ LSM_MATHML_CSS_TYPE_USER_IMPORTANT,
|
27
|
-
"LSM_MATHML_CSS_TYPE_USER_IMPORTANT",
|
28
|
-
"user-important" },
|
29
|
-
{ 0, NULL, NULL }
|
30
|
-
};
|
31
|
-
the_type = g_enum_register_static (
|
32
|
-
g_intern_static_string ("LsmMathmlCssType"),
|
33
|
-
values);
|
34
|
-
}
|
35
|
-
return the_type;
|
36
|
-
}
|
37
|
-
|
38
|
-
GType
|
39
|
-
lsm_mathml_mode_get_type (void)
|
40
|
-
{
|
41
|
-
static GType the_type = 0;
|
42
|
-
|
43
|
-
if (the_type == 0)
|
44
|
-
{
|
45
|
-
static const GEnumValue values[] = {
|
46
|
-
{ LSM_MATHML_MODE_ERROR,
|
47
|
-
"LSM_MATHML_MODE_ERROR",
|
48
|
-
"error" },
|
49
|
-
{ LSM_MATHML_MODE_DISPLAY,
|
50
|
-
"LSM_MATHML_MODE_DISPLAY",
|
51
|
-
"display" },
|
52
|
-
{ LSM_MATHML_MODE_INLINE,
|
53
|
-
"LSM_MATHML_MODE_INLINE",
|
54
|
-
"inline" },
|
55
|
-
{ 0, NULL, NULL }
|
56
|
-
};
|
57
|
-
the_type = g_enum_register_static (
|
58
|
-
g_intern_static_string ("LsmMathmlMode"),
|
59
|
-
values);
|
60
|
-
}
|
61
|
-
return the_type;
|
62
|
-
}
|
63
|
-
|
64
|
-
GType
|
65
|
-
lsm_mathml_display_get_type (void)
|
66
|
-
{
|
67
|
-
static GType the_type = 0;
|
68
|
-
|
69
|
-
if (the_type == 0)
|
70
|
-
{
|
71
|
-
static const GEnumValue values[] = {
|
72
|
-
{ LSM_MATHML_DISPLAY_ERROR,
|
73
|
-
"LSM_MATHML_DISPLAY_ERROR",
|
74
|
-
"error" },
|
75
|
-
{ LSM_MATHML_DISPLAY_BLOCK,
|
76
|
-
"LSM_MATHML_DISPLAY_BLOCK",
|
77
|
-
"block" },
|
78
|
-
{ LSM_MATHML_DISPLAY_INLINE,
|
79
|
-
"LSM_MATHML_DISPLAY_INLINE",
|
80
|
-
"inline" },
|
81
|
-
{ 0, NULL, NULL }
|
82
|
-
};
|
83
|
-
the_type = g_enum_register_static (
|
84
|
-
g_intern_static_string ("LsmMathmlDisplay"),
|
85
|
-
values);
|
86
|
-
}
|
87
|
-
return the_type;
|
88
|
-
}
|
89
|
-
|
90
|
-
GType
|
91
|
-
lsm_mathml_space_name_get_type (void)
|
92
|
-
{
|
93
|
-
static GType the_type = 0;
|
94
|
-
|
95
|
-
if (the_type == 0)
|
96
|
-
{
|
97
|
-
static const GEnumValue values[] = {
|
98
|
-
{ LSM_MATHML_SPACE_NAME_ERROR,
|
99
|
-
"LSM_MATHML_SPACE_NAME_ERROR",
|
100
|
-
"error" },
|
101
|
-
{ LSM_MATHML_SPACE_NAME_NEGATIVE_VERY_VERY_THIN,
|
102
|
-
"LSM_MATHML_SPACE_NAME_NEGATIVE_VERY_VERY_THIN",
|
103
|
-
"negative-very-very-thin" },
|
104
|
-
{ LSM_MATHML_SPACE_NAME_NEGATIVE_VERY_THIN,
|
105
|
-
"LSM_MATHML_SPACE_NAME_NEGATIVE_VERY_THIN",
|
106
|
-
"negative-very-thin" },
|
107
|
-
{ LSM_MATHML_SPACE_NAME_NEGATIVE_THIN,
|
108
|
-
"LSM_MATHML_SPACE_NAME_NEGATIVE_THIN",
|
109
|
-
"negative-thin" },
|
110
|
-
{ LSM_MATHML_SPACE_NAME_NEGATIVE_MEDIUM,
|
111
|
-
"LSM_MATHML_SPACE_NAME_NEGATIVE_MEDIUM",
|
112
|
-
"negative-medium" },
|
113
|
-
{ LSM_MATHML_SPACE_NAME_NEGATIVE_THICK,
|
114
|
-
"LSM_MATHML_SPACE_NAME_NEGATIVE_THICK",
|
115
|
-
"negative-thick" },
|
116
|
-
{ LSM_MATHML_SPACE_NAME_NEGATIVE_VERY_THICK,
|
117
|
-
"LSM_MATHML_SPACE_NAME_NEGATIVE_VERY_THICK",
|
118
|
-
"negative-very-thick" },
|
119
|
-
{ LSM_MATHML_SPACE_NAME_NEGATIVE_VERY_VERY_THICK,
|
120
|
-
"LSM_MATHML_SPACE_NAME_NEGATIVE_VERY_VERY_THICK",
|
121
|
-
"negative-very-very-thick" },
|
122
|
-
{ LSM_MATHML_SPACE_NAME_VERY_VERY_THIN,
|
123
|
-
"LSM_MATHML_SPACE_NAME_VERY_VERY_THIN",
|
124
|
-
"very-very-thin" },
|
125
|
-
{ LSM_MATHML_SPACE_NAME_VERY_THIN,
|
126
|
-
"LSM_MATHML_SPACE_NAME_VERY_THIN",
|
127
|
-
"very-thin" },
|
128
|
-
{ LSM_MATHML_SPACE_NAME_THIN,
|
129
|
-
"LSM_MATHML_SPACE_NAME_THIN",
|
130
|
-
"thin" },
|
131
|
-
{ LSM_MATHML_SPACE_NAME_MEDIUM,
|
132
|
-
"LSM_MATHML_SPACE_NAME_MEDIUM",
|
133
|
-
"medium" },
|
134
|
-
{ LSM_MATHML_SPACE_NAME_THICK,
|
135
|
-
"LSM_MATHML_SPACE_NAME_THICK",
|
136
|
-
"thick" },
|
137
|
-
{ LSM_MATHML_SPACE_NAME_VERY_THICK,
|
138
|
-
"LSM_MATHML_SPACE_NAME_VERY_THICK",
|
139
|
-
"very-thick" },
|
140
|
-
{ LSM_MATHML_SPACE_NAME_VERY_VERY_THICK,
|
141
|
-
"LSM_MATHML_SPACE_NAME_VERY_VERY_THICK",
|
142
|
-
"very-very-thick" },
|
143
|
-
{ LSM_MATHML_SPACE_NAME_INFINITY,
|
144
|
-
"LSM_MATHML_SPACE_NAME_INFINITY",
|
145
|
-
"infinity" },
|
146
|
-
{ 0, NULL, NULL }
|
147
|
-
};
|
148
|
-
the_type = g_enum_register_static (
|
149
|
-
g_intern_static_string ("LsmMathmlSpaceName"),
|
150
|
-
values);
|
151
|
-
}
|
152
|
-
return the_type;
|
153
|
-
}
|
154
|
-
|
155
|
-
GType
|
156
|
-
lsm_mathml_unit_get_type (void)
|
157
|
-
{
|
158
|
-
static GType the_type = 0;
|
159
|
-
|
160
|
-
if (the_type == 0)
|
161
|
-
{
|
162
|
-
static const GEnumValue values[] = {
|
163
|
-
{ LSM_MATHML_UNIT_ERROR,
|
164
|
-
"LSM_MATHML_UNIT_ERROR",
|
165
|
-
"error" },
|
166
|
-
{ LSM_MATHML_UNIT_NONE,
|
167
|
-
"LSM_MATHML_UNIT_NONE",
|
168
|
-
"none" },
|
169
|
-
{ LSM_MATHML_UNIT_EM,
|
170
|
-
"LSM_MATHML_UNIT_EM",
|
171
|
-
"em" },
|
172
|
-
{ LSM_MATHML_UNIT_EX,
|
173
|
-
"LSM_MATHML_UNIT_EX",
|
174
|
-
"ex" },
|
175
|
-
{ LSM_MATHML_UNIT_IN,
|
176
|
-
"LSM_MATHML_UNIT_IN",
|
177
|
-
"in" },
|
178
|
-
{ LSM_MATHML_UNIT_CM,
|
179
|
-
"LSM_MATHML_UNIT_CM",
|
180
|
-
"cm" },
|
181
|
-
{ LSM_MATHML_UNIT_MM,
|
182
|
-
"LSM_MATHML_UNIT_MM",
|
183
|
-
"mm" },
|
184
|
-
{ LSM_MATHML_UNIT_PT,
|
185
|
-
"LSM_MATHML_UNIT_PT",
|
186
|
-
"pt" },
|
187
|
-
{ LSM_MATHML_UNIT_PX,
|
188
|
-
"LSM_MATHML_UNIT_PX",
|
189
|
-
"px" },
|
190
|
-
{ LSM_MATHML_UNIT_PC,
|
191
|
-
"LSM_MATHML_UNIT_PC",
|
192
|
-
"pc" },
|
193
|
-
{ LSM_MATHML_UNIT_PERCENT,
|
194
|
-
"LSM_MATHML_UNIT_PERCENT",
|
195
|
-
"percent" },
|
196
|
-
{ 0, NULL, NULL }
|
197
|
-
};
|
198
|
-
the_type = g_enum_register_static (
|
199
|
-
g_intern_static_string ("LsmMathmlUnit"),
|
200
|
-
values);
|
201
|
-
}
|
202
|
-
return the_type;
|
203
|
-
}
|
204
|
-
|
205
|
-
GType
|
206
|
-
lsm_mathml_font_style_get_type (void)
|
207
|
-
{
|
208
|
-
static GType the_type = 0;
|
209
|
-
|
210
|
-
if (the_type == 0)
|
211
|
-
{
|
212
|
-
static const GEnumValue values[] = {
|
213
|
-
{ LSM_MATHML_FONT_STYLE_ERROR,
|
214
|
-
"LSM_MATHML_FONT_STYLE_ERROR",
|
215
|
-
"error" },
|
216
|
-
{ LSM_MATHML_FONT_STYLE_NORMAL,
|
217
|
-
"LSM_MATHML_FONT_STYLE_NORMAL",
|
218
|
-
"normal" },
|
219
|
-
{ LSM_MATHML_FONT_STYLE_ITALIC,
|
220
|
-
"LSM_MATHML_FONT_STYLE_ITALIC",
|
221
|
-
"italic" },
|
222
|
-
{ 0, NULL, NULL }
|
223
|
-
};
|
224
|
-
the_type = g_enum_register_static (
|
225
|
-
g_intern_static_string ("LsmMathmlFontStyle"),
|
226
|
-
values);
|
227
|
-
}
|
228
|
-
return the_type;
|
229
|
-
}
|
230
|
-
|
231
|
-
GType
|
232
|
-
lsm_mathml_font_weight_get_type (void)
|
233
|
-
{
|
234
|
-
static GType the_type = 0;
|
235
|
-
|
236
|
-
if (the_type == 0)
|
237
|
-
{
|
238
|
-
static const GEnumValue values[] = {
|
239
|
-
{ LSM_MATHML_FONT_WEIGHT_ERROR,
|
240
|
-
"LSM_MATHML_FONT_WEIGHT_ERROR",
|
241
|
-
"error" },
|
242
|
-
{ LSM_MATHML_FONT_WEIGHT_NORMAL,
|
243
|
-
"LSM_MATHML_FONT_WEIGHT_NORMAL",
|
244
|
-
"normal" },
|
245
|
-
{ LSM_MATHML_FONT_WEIGHT_BOLD,
|
246
|
-
"LSM_MATHML_FONT_WEIGHT_BOLD",
|
247
|
-
"bold" },
|
248
|
-
{ 0, NULL, NULL }
|
249
|
-
};
|
250
|
-
the_type = g_enum_register_static (
|
251
|
-
g_intern_static_string ("LsmMathmlFontWeight"),
|
252
|
-
values);
|
253
|
-
}
|
254
|
-
return the_type;
|
255
|
-
}
|
256
|
-
|
257
|
-
GType
|
258
|
-
lsm_mathml_variant_get_type (void)
|
259
|
-
{
|
260
|
-
static GType the_type = 0;
|
261
|
-
|
262
|
-
if (the_type == 0)
|
263
|
-
{
|
264
|
-
static const GEnumValue values[] = {
|
265
|
-
{ LSM_MATHML_VARIANT_ERROR,
|
266
|
-
"LSM_MATHML_VARIANT_ERROR",
|
267
|
-
"error" },
|
268
|
-
{ LSM_MATHML_VARIANT_NORMAL,
|
269
|
-
"LSM_MATHML_VARIANT_NORMAL",
|
270
|
-
"normal" },
|
271
|
-
{ LSM_MATHML_VARIANT_BOLD,
|
272
|
-
"LSM_MATHML_VARIANT_BOLD",
|
273
|
-
"bold" },
|
274
|
-
{ LSM_MATHML_VARIANT_ITALIC,
|
275
|
-
"LSM_MATHML_VARIANT_ITALIC",
|
276
|
-
"italic" },
|
277
|
-
{ LSM_MATHML_VARIANT_BOLD_ITALIC,
|
278
|
-
"LSM_MATHML_VARIANT_BOLD_ITALIC",
|
279
|
-
"bold-italic" },
|
280
|
-
{ LSM_MATHML_VARIANT_DOUBLE_STRUCK,
|
281
|
-
"LSM_MATHML_VARIANT_DOUBLE_STRUCK",
|
282
|
-
"double-struck" },
|
283
|
-
{ LSM_MATHML_VARIANT_FRAKTUR_BOLD,
|
284
|
-
"LSM_MATHML_VARIANT_FRAKTUR_BOLD",
|
285
|
-
"fraktur-bold" },
|
286
|
-
{ LSM_MATHML_VARIANT_SCRIPT,
|
287
|
-
"LSM_MATHML_VARIANT_SCRIPT",
|
288
|
-
"script" },
|
289
|
-
{ LSM_MATHML_VARIANT_SCRIPT_BOLD,
|
290
|
-
"LSM_MATHML_VARIANT_SCRIPT_BOLD",
|
291
|
-
"script-bold" },
|
292
|
-
{ LSM_MATHML_VARIANT_FRAKTUR,
|
293
|
-
"LSM_MATHML_VARIANT_FRAKTUR",
|
294
|
-
"fraktur" },
|
295
|
-
{ LSM_MATHML_VARIANT_SANS_SERIF,
|
296
|
-
"LSM_MATHML_VARIANT_SANS_SERIF",
|
297
|
-
"sans-serif" },
|
298
|
-
{ LSM_MATHML_VARIANT_SANS_SERIF_BOLD,
|
299
|
-
"LSM_MATHML_VARIANT_SANS_SERIF_BOLD",
|
300
|
-
"sans-serif-bold" },
|
301
|
-
{ LSM_MATHML_VARIANT_SANS_SERIF_ITALIC,
|
302
|
-
"LSM_MATHML_VARIANT_SANS_SERIF_ITALIC",
|
303
|
-
"sans-serif-italic" },
|
304
|
-
{ LSM_MATHML_VARIANT_SANS_SERIF_BOLD_ITALIC,
|
305
|
-
"LSM_MATHML_VARIANT_SANS_SERIF_BOLD_ITALIC",
|
306
|
-
"sans-serif-bold-italic" },
|
307
|
-
{ LSM_MATHML_VARIANT_MONOSPACE,
|
308
|
-
"LSM_MATHML_VARIANT_MONOSPACE",
|
309
|
-
"monospace" },
|
310
|
-
{ 0, NULL, NULL }
|
311
|
-
};
|
312
|
-
the_type = g_enum_register_static (
|
313
|
-
g_intern_static_string ("LsmMathmlVariant"),
|
314
|
-
values);
|
315
|
-
}
|
316
|
-
return the_type;
|
317
|
-
}
|
318
|
-
|
319
|
-
GType
|
320
|
-
lsm_mathml_form_get_type (void)
|
321
|
-
{
|
322
|
-
static GType the_type = 0;
|
323
|
-
|
324
|
-
if (the_type == 0)
|
325
|
-
{
|
326
|
-
static const GEnumValue values[] = {
|
327
|
-
{ LSM_MATHML_FORM_ERROR,
|
328
|
-
"LSM_MATHML_FORM_ERROR",
|
329
|
-
"error" },
|
330
|
-
{ LSM_MATHML_FORM_PREFIX,
|
331
|
-
"LSM_MATHML_FORM_PREFIX",
|
332
|
-
"prefix" },
|
333
|
-
{ LSM_MATHML_FORM_POSTFIX,
|
334
|
-
"LSM_MATHML_FORM_POSTFIX",
|
335
|
-
"postfix" },
|
336
|
-
{ LSM_MATHML_FORM_INFIX,
|
337
|
-
"LSM_MATHML_FORM_INFIX",
|
338
|
-
"infix" },
|
339
|
-
{ 0, NULL, NULL }
|
340
|
-
};
|
341
|
-
the_type = g_enum_register_static (
|
342
|
-
g_intern_static_string ("LsmMathmlForm"),
|
343
|
-
values);
|
344
|
-
}
|
345
|
-
return the_type;
|
346
|
-
}
|
347
|
-
|
348
|
-
GType
|
349
|
-
lsm_mathml_row_align_get_type (void)
|
350
|
-
{
|
351
|
-
static GType the_type = 0;
|
352
|
-
|
353
|
-
if (the_type == 0)
|
354
|
-
{
|
355
|
-
static const GEnumValue values[] = {
|
356
|
-
{ LSM_MATHML_ROW_ALIGN_ERROR,
|
357
|
-
"LSM_MATHML_ROW_ALIGN_ERROR",
|
358
|
-
"error" },
|
359
|
-
{ LSM_MATHML_ROW_ALIGN_BASELINE,
|
360
|
-
"LSM_MATHML_ROW_ALIGN_BASELINE",
|
361
|
-
"baseline" },
|
362
|
-
{ LSM_MATHML_ROW_ALIGN_TOP,
|
363
|
-
"LSM_MATHML_ROW_ALIGN_TOP",
|
364
|
-
"top" },
|
365
|
-
{ LSM_MATHML_ROW_ALIGN_BOTTOM,
|
366
|
-
"LSM_MATHML_ROW_ALIGN_BOTTOM",
|
367
|
-
"bottom" },
|
368
|
-
{ LSM_MATHML_ROW_ALIGN_CENTER,
|
369
|
-
"LSM_MATHML_ROW_ALIGN_CENTER",
|
370
|
-
"center" },
|
371
|
-
{ LSM_MATHML_ROW_ALIGN_AXIS,
|
372
|
-
"LSM_MATHML_ROW_ALIGN_AXIS",
|
373
|
-
"axis" },
|
374
|
-
{ 0, NULL, NULL }
|
375
|
-
};
|
376
|
-
the_type = g_enum_register_static (
|
377
|
-
g_intern_static_string ("LsmMathmlRowAlign"),
|
378
|
-
values);
|
379
|
-
}
|
380
|
-
return the_type;
|
381
|
-
}
|
382
|
-
|
383
|
-
GType
|
384
|
-
lsm_mathml_column_align_get_type (void)
|
385
|
-
{
|
386
|
-
static GType the_type = 0;
|
387
|
-
|
388
|
-
if (the_type == 0)
|
389
|
-
{
|
390
|
-
static const GEnumValue values[] = {
|
391
|
-
{ LSM_MATHML_COLUMN_ALIGN_ERROR,
|
392
|
-
"LSM_MATHML_COLUMN_ALIGN_ERROR",
|
393
|
-
"error" },
|
394
|
-
{ LSM_MATHML_COLUMN_ALIGN_CENTER,
|
395
|
-
"LSM_MATHML_COLUMN_ALIGN_CENTER",
|
396
|
-
"center" },
|
397
|
-
{ LSM_MATHML_COLUMN_ALIGN_LEFT,
|
398
|
-
"LSM_MATHML_COLUMN_ALIGN_LEFT",
|
399
|
-
"left" },
|
400
|
-
{ LSM_MATHML_COLUMN_ALIGN_RIGHT,
|
401
|
-
"LSM_MATHML_COLUMN_ALIGN_RIGHT",
|
402
|
-
"right" },
|
403
|
-
{ 0, NULL, NULL }
|
404
|
-
};
|
405
|
-
the_type = g_enum_register_static (
|
406
|
-
g_intern_static_string ("LsmMathmlColumnAlign"),
|
407
|
-
values);
|
408
|
-
}
|
409
|
-
return the_type;
|
410
|
-
}
|
411
|
-
|
412
|
-
GType
|
413
|
-
lsm_mathml_line_get_type (void)
|
414
|
-
{
|
415
|
-
static GType the_type = 0;
|
416
|
-
|
417
|
-
if (the_type == 0)
|
418
|
-
{
|
419
|
-
static const GEnumValue values[] = {
|
420
|
-
{ LSM_MATHML_LINE_ERROR,
|
421
|
-
"LSM_MATHML_LINE_ERROR",
|
422
|
-
"error" },
|
423
|
-
{ LSM_MATHML_LINE_NONE,
|
424
|
-
"LSM_MATHML_LINE_NONE",
|
425
|
-
"none" },
|
426
|
-
{ LSM_MATHML_LINE_SOLID,
|
427
|
-
"LSM_MATHML_LINE_SOLID",
|
428
|
-
"solid" },
|
429
|
-
{ LSM_MATHML_LINE_DASHED,
|
430
|
-
"LSM_MATHML_LINE_DASHED",
|
431
|
-
"dashed" },
|
432
|
-
{ 0, NULL, NULL }
|
433
|
-
};
|
434
|
-
the_type = g_enum_register_static (
|
435
|
-
g_intern_static_string ("LsmMathmlLine"),
|
436
|
-
values);
|
437
|
-
}
|
438
|
-
return the_type;
|
439
|
-
}
|
440
|
-
|
441
|
-
GType
|
442
|
-
lsm_mathml_script_level_sign_get_type (void)
|
443
|
-
{
|
444
|
-
static GType the_type = 0;
|
445
|
-
|
446
|
-
if (the_type == 0)
|
447
|
-
{
|
448
|
-
static const GEnumValue values[] = {
|
449
|
-
{ LSM_MATHML_SCRIPT_LEVEL_SIGN_ERROR,
|
450
|
-
"LSM_MATHML_SCRIPT_LEVEL_SIGN_ERROR",
|
451
|
-
"error" },
|
452
|
-
{ LSM_MATHML_SCRIPT_LEVEL_SIGN_NONE,
|
453
|
-
"LSM_MATHML_SCRIPT_LEVEL_SIGN_NONE",
|
454
|
-
"none" },
|
455
|
-
{ LSM_MATHML_SCRIPT_LEVEL_SIGN_PLUS,
|
456
|
-
"LSM_MATHML_SCRIPT_LEVEL_SIGN_PLUS",
|
457
|
-
"plus" },
|
458
|
-
{ LSM_MATHML_SCRIPT_LEVEL_SIGN_MINUS,
|
459
|
-
"LSM_MATHML_SCRIPT_LEVEL_SIGN_MINUS",
|
460
|
-
"minus" },
|
461
|
-
{ 0, NULL, NULL }
|
462
|
-
};
|
463
|
-
the_type = g_enum_register_static (
|
464
|
-
g_intern_static_string ("LsmMathmlScriptLevelSign"),
|
465
|
-
values);
|
466
|
-
}
|
467
|
-
return the_type;
|
468
|
-
}
|
469
|
-
|
470
|
-
GType
|
471
|
-
lsm_mathml_notation_get_type (void)
|
472
|
-
{
|
473
|
-
static GType the_type = 0;
|
474
|
-
|
475
|
-
if (the_type == 0)
|
476
|
-
{
|
477
|
-
static const GEnumValue values[] = {
|
478
|
-
{ LSM_MATHML_NOTATION_ERROR,
|
479
|
-
"LSM_MATHML_NOTATION_ERROR",
|
480
|
-
"error" },
|
481
|
-
{ LSM_MATHML_NOTATION_LONGDIV,
|
482
|
-
"LSM_MATHML_NOTATION_LONGDIV",
|
483
|
-
"longdiv" },
|
484
|
-
{ LSM_MATHML_NOTATION_ACTUARIAL,
|
485
|
-
"LSM_MATHML_NOTATION_ACTUARIAL",
|
486
|
-
"actuarial" },
|
487
|
-
{ LSM_MATHML_NOTATION_RADICAL,
|
488
|
-
"LSM_MATHML_NOTATION_RADICAL",
|
489
|
-
"radical" },
|
490
|
-
{ LSM_MATHML_NOTATION_BOX,
|
491
|
-
"LSM_MATHML_NOTATION_BOX",
|
492
|
-
"box" },
|
493
|
-
{ LSM_MATHML_NOTATION_ROUNDED_BOX,
|
494
|
-
"LSM_MATHML_NOTATION_ROUNDED_BOX",
|
495
|
-
"rounded-box" },
|
496
|
-
{ LSM_MATHML_NOTATION_CIRCLE,
|
497
|
-
"LSM_MATHML_NOTATION_CIRCLE",
|
498
|
-
"circle" },
|
499
|
-
{ LSM_MATHML_NOTATION_LEFT,
|
500
|
-
"LSM_MATHML_NOTATION_LEFT",
|
501
|
-
"left" },
|
502
|
-
{ LSM_MATHML_NOTATION_RIGHT,
|
503
|
-
"LSM_MATHML_NOTATION_RIGHT",
|
504
|
-
"right" },
|
505
|
-
{ LSM_MATHML_NOTATION_TOP,
|
506
|
-
"LSM_MATHML_NOTATION_TOP",
|
507
|
-
"top" },
|
508
|
-
{ LSM_MATHML_NOTATION_BOTTOM,
|
509
|
-
"LSM_MATHML_NOTATION_BOTTOM",
|
510
|
-
"bottom" },
|
511
|
-
{ LSM_MATHML_NOTATION_UP_DIAGONAL_STRIKE,
|
512
|
-
"LSM_MATHML_NOTATION_UP_DIAGONAL_STRIKE",
|
513
|
-
"up-diagonal-strike" },
|
514
|
-
{ LSM_MATHML_NOTATION_DOWN_DIAGONAL_STRIKE,
|
515
|
-
"LSM_MATHML_NOTATION_DOWN_DIAGONAL_STRIKE",
|
516
|
-
"down-diagonal-strike" },
|
517
|
-
{ LSM_MATHML_NOTATION_VERTICAL_STRIKE,
|
518
|
-
"LSM_MATHML_NOTATION_VERTICAL_STRIKE",
|
519
|
-
"vertical-strike" },
|
520
|
-
{ LSM_MATHML_NOTATION_HORIZONTAL_STRIKE,
|
521
|
-
"LSM_MATHML_NOTATION_HORIZONTAL_STRIKE",
|
522
|
-
"horizontal-strike" },
|
523
|
-
{ LSM_MATHML_NOTATION_MADRUWB,
|
524
|
-
"LSM_MATHML_NOTATION_MADRUWB",
|
525
|
-
"madruwb" },
|
526
|
-
{ LSM_MATHML_NOTATION_UP_DIAGONAL_ARROW,
|
527
|
-
"LSM_MATHML_NOTATION_UP_DIAGONAL_ARROW",
|
528
|
-
"up-diagonal-arrow" },
|
529
|
-
{ LSM_MATHML_NOTATION_LAST,
|
530
|
-
"LSM_MATHML_NOTATION_LAST",
|
531
|
-
"last" },
|
532
|
-
{ 0, NULL, NULL }
|
533
|
-
};
|
534
|
-
the_type = g_enum_register_static (
|
535
|
-
g_intern_static_string ("LsmMathmlNotation"),
|
536
|
-
values);
|
537
|
-
}
|
538
|
-
return the_type;
|
539
|
-
}
|
540
|
-
|
541
|
-
GType
|
542
|
-
lsm_mathml_linebreak_get_type (void)
|
543
|
-
{
|
544
|
-
static GType the_type = 0;
|
545
|
-
|
546
|
-
if (the_type == 0)
|
547
|
-
{
|
548
|
-
static const GEnumValue values[] = {
|
549
|
-
{ LSM_MATHML_LINEBREAK_ERROR,
|
550
|
-
"LSM_MATHML_LINEBREAK_ERROR",
|
551
|
-
"error" },
|
552
|
-
{ LSM_MATHML_LINEBREAK_AUTO,
|
553
|
-
"LSM_MATHML_LINEBREAK_AUTO",
|
554
|
-
"auto" },
|
555
|
-
{ LSM_MATHML_LINEBREAK_NEWLINE,
|
556
|
-
"LSM_MATHML_LINEBREAK_NEWLINE",
|
557
|
-
"newline" },
|
558
|
-
{ LSM_MATHML_LINEBREAK_NOBREAK,
|
559
|
-
"LSM_MATHML_LINEBREAK_NOBREAK",
|
560
|
-
"nobreak" },
|
561
|
-
{ LSM_MATHML_LINEBREAK_GOODBREAK,
|
562
|
-
"LSM_MATHML_LINEBREAK_GOODBREAK",
|
563
|
-
"goodbreak" },
|
564
|
-
{ LSM_MATHML_LINEBREAK_BADBREAK,
|
565
|
-
"LSM_MATHML_LINEBREAK_BADBREAK",
|
566
|
-
"badbreak" },
|
567
|
-
{ 0, NULL, NULL }
|
568
|
-
};
|
569
|
-
the_type = g_enum_register_static (
|
570
|
-
g_intern_static_string ("LsmMathmlLinebreak"),
|
571
|
-
values);
|
572
|
-
}
|
573
|
-
return the_type;
|
574
|
-
}
|
575
|
-
|
576
|
-
/* enumerations from "lsmmathmltablerowelement.h" */
|
577
|
-
#include "lsmmathmltablerowelement.h"
|
578
|
-
|
579
|
-
GType
|
580
|
-
lsm_mathml_table_row_element_type_get_type (void)
|
581
|
-
{
|
582
|
-
static GType the_type = 0;
|
583
|
-
|
584
|
-
if (the_type == 0)
|
585
|
-
{
|
586
|
-
static const GEnumValue values[] = {
|
587
|
-
{ LSM_MATHML_TABLE_ROW_ELEMENT_TYPE_ROW,
|
588
|
-
"LSM_MATHML_TABLE_ROW_ELEMENT_TYPE_ROW",
|
589
|
-
"row" },
|
590
|
-
{ LSM_MATHML_TABLE_ROW_ELEMENT_TYPE_LABELED_ROW,
|
591
|
-
"LSM_MATHML_TABLE_ROW_ELEMENT_TYPE_LABELED_ROW",
|
592
|
-
"labeled-row" },
|
593
|
-
{ 0, NULL, NULL }
|
594
|
-
};
|
595
|
-
the_type = g_enum_register_static (
|
596
|
-
g_intern_static_string ("LsmMathmlTableRowElementType"),
|
597
|
-
values);
|
598
|
-
}
|
599
|
-
return the_type;
|
600
|
-
}
|
601
|
-
|
602
|
-
/* enumerations from "lsmmathmlradicalelement.h" */
|
603
|
-
#include "lsmmathmlradicalelement.h"
|
604
|
-
|
605
|
-
GType
|
606
|
-
lsm_mathml_radical_element_type_get_type (void)
|
607
|
-
{
|
608
|
-
static GType the_type = 0;
|
609
|
-
|
610
|
-
if (the_type == 0)
|
611
|
-
{
|
612
|
-
static const GEnumValue values[] = {
|
613
|
-
{ LSM_MATHML_RADICAL_ELEMENT_TYPE_SQRT,
|
614
|
-
"LSM_MATHML_RADICAL_ELEMENT_TYPE_SQRT",
|
615
|
-
"sqrt" },
|
616
|
-
{ LSM_MATHML_RADICAL_ELEMENT_TYPE_ROOT,
|
617
|
-
"LSM_MATHML_RADICAL_ELEMENT_TYPE_ROOT",
|
618
|
-
"root" },
|
619
|
-
{ 0, NULL, NULL }
|
620
|
-
};
|
621
|
-
the_type = g_enum_register_static (
|
622
|
-
g_intern_static_string ("LsmMathmlRadicalElementType"),
|
623
|
-
values);
|
624
|
-
}
|
625
|
-
return the_type;
|
626
|
-
}
|
627
|
-
|
628
|
-
/* enumerations from "lsmmathmlscriptelement.h" */
|
629
|
-
#include "lsmmathmlscriptelement.h"
|
630
|
-
|
631
|
-
GType
|
632
|
-
lsm_mathml_script_element_type_get_type (void)
|
633
|
-
{
|
634
|
-
static GType the_type = 0;
|
635
|
-
|
636
|
-
if (the_type == 0)
|
637
|
-
{
|
638
|
-
static const GEnumValue values[] = {
|
639
|
-
{ LSM_MATHML_SCRIPT_ELEMENT_TYPE_SUB,
|
640
|
-
"LSM_MATHML_SCRIPT_ELEMENT_TYPE_SUB",
|
641
|
-
"sub" },
|
642
|
-
{ LSM_MATHML_SCRIPT_ELEMENT_TYPE_SUP,
|
643
|
-
"LSM_MATHML_SCRIPT_ELEMENT_TYPE_SUP",
|
644
|
-
"sup" },
|
645
|
-
{ LSM_MATHML_SCRIPT_ELEMENT_TYPE_SUB_SUP,
|
646
|
-
"LSM_MATHML_SCRIPT_ELEMENT_TYPE_SUB_SUP",
|
647
|
-
"sub-sup" },
|
648
|
-
{ 0, NULL, NULL }
|
649
|
-
};
|
650
|
-
the_type = g_enum_register_static (
|
651
|
-
g_intern_static_string ("LsmMathmlScriptElementType"),
|
652
|
-
values);
|
653
|
-
}
|
654
|
-
return the_type;
|
655
|
-
}
|
656
|
-
|
657
|
-
/* enumerations from "lsmmathmlunderoverelement.h" */
|
658
|
-
#include "lsmmathmlunderoverelement.h"
|
659
|
-
|
660
|
-
GType
|
661
|
-
lsm_mathml_under_over_element_type_get_type (void)
|
662
|
-
{
|
663
|
-
static GType the_type = 0;
|
664
|
-
|
665
|
-
if (the_type == 0)
|
666
|
-
{
|
667
|
-
static const GEnumValue values[] = {
|
668
|
-
{ LSM_MATHML_UNDER_OVER_ELEMENT_TYPE_UNDER,
|
669
|
-
"LSM_MATHML_UNDER_OVER_ELEMENT_TYPE_UNDER",
|
670
|
-
"under" },
|
671
|
-
{ LSM_MATHML_UNDER_OVER_ELEMENT_TYPE_OVER,
|
672
|
-
"LSM_MATHML_UNDER_OVER_ELEMENT_TYPE_OVER",
|
673
|
-
"over" },
|
674
|
-
{ LSM_MATHML_UNDER_OVER_ELEMENT_TYPE_UNDER_OVER,
|
675
|
-
"LSM_MATHML_UNDER_OVER_ELEMENT_TYPE_UNDER_OVER",
|
676
|
-
"under-over" },
|
677
|
-
{ 0, NULL, NULL }
|
678
|
-
};
|
679
|
-
the_type = g_enum_register_static (
|
680
|
-
g_intern_static_string ("LsmMathmlUnderOverElementType"),
|
681
|
-
values);
|
682
|
-
}
|
683
|
-
return the_type;
|
684
|
-
}
|
685
|
-
|
686
|
-
/* enumerations from "lsmmathmlpresentationtoken.h" */
|
687
|
-
#include "lsmmathmlpresentationtoken.h"
|
688
|
-
|
689
|
-
GType
|
690
|
-
lsm_mathml_presentation_token_type_get_type (void)
|
691
|
-
{
|
692
|
-
static GType the_type = 0;
|
693
|
-
|
694
|
-
if (the_type == 0)
|
695
|
-
{
|
696
|
-
static const GEnumValue values[] = {
|
697
|
-
{ LSM_MATHML_PRESENTATION_TOKEN_TYPE_NUMBER,
|
698
|
-
"LSM_MATHML_PRESENTATION_TOKEN_TYPE_NUMBER",
|
699
|
-
"number" },
|
700
|
-
{ LSM_MATHML_PRESENTATION_TOKEN_TYPE_IDENTIFIER,
|
701
|
-
"LSM_MATHML_PRESENTATION_TOKEN_TYPE_IDENTIFIER",
|
702
|
-
"identifier" },
|
703
|
-
{ LSM_MATHML_PRESENTATION_TOKEN_TYPE_TEXT,
|
704
|
-
"LSM_MATHML_PRESENTATION_TOKEN_TYPE_TEXT",
|
705
|
-
"text" },
|
706
|
-
{ 0, NULL, NULL }
|
707
|
-
};
|
708
|
-
the_type = g_enum_register_static (
|
709
|
-
g_intern_static_string ("LsmMathmlPresentationTokenType"),
|
710
|
-
values);
|
711
|
-
}
|
712
|
-
return the_type;
|
713
|
-
}
|
714
|
-
|
715
|
-
/* enumerations from "lsmmathmlview.h" */
|
716
|
-
#include "lsmmathmlview.h"
|
717
|
-
|
718
|
-
GType
|
719
|
-
lsm_mathml_glyph_flags_get_type (void)
|
720
|
-
{
|
721
|
-
static GType the_type = 0;
|
722
|
-
|
723
|
-
if (the_type == 0)
|
724
|
-
{
|
725
|
-
static const GFlagsValue values[] = {
|
726
|
-
{ LSM_MATHML_GLYPH_FLAG_STRETCH_VERTICAL,
|
727
|
-
"LSM_MATHML_GLYPH_FLAG_STRETCH_VERTICAL",
|
728
|
-
"stretch-vertical" },
|
729
|
-
{ LSM_MATHML_GLYPH_FLAG_STRETCH_HORIZONTAL,
|
730
|
-
"LSM_MATHML_GLYPH_FLAG_STRETCH_HORIZONTAL",
|
731
|
-
"stretch-horizontal" },
|
732
|
-
{ LSM_MATHML_GLYPH_FLAG_TYPE_SIZED,
|
733
|
-
"LSM_MATHML_GLYPH_FLAG_TYPE_SIZED",
|
734
|
-
"type-sized" },
|
735
|
-
{ LSM_MATHML_GLYPH_FLAG_ALIGN_AXIS,
|
736
|
-
"LSM_MATHML_GLYPH_FLAG_ALIGN_AXIS",
|
737
|
-
"align-axis" },
|
738
|
-
{ LSM_MATHML_GLYPH_FLAG_HAS_LARGE_VERSION,
|
739
|
-
"LSM_MATHML_GLYPH_FLAG_HAS_LARGE_VERSION",
|
740
|
-
"has-large-version" },
|
741
|
-
{ LSM_MATHML_GLYPH_FLAG_INTEGRAL_SLANT,
|
742
|
-
"LSM_MATHML_GLYPH_FLAG_INTEGRAL_SLANT",
|
743
|
-
"integral-slant" },
|
744
|
-
{ 0, NULL, NULL }
|
745
|
-
};
|
746
|
-
the_type = g_flags_register_static (
|
747
|
-
g_intern_static_string ("LsmMathmlGlyphFlags"),
|
748
|
-
values);
|
749
|
-
}
|
750
|
-
return the_type;
|
751
|
-
}
|
752
|
-
|
753
|
-
GType
|
754
|
-
lsm_mathml_font_get_type (void)
|
755
|
-
{
|
756
|
-
static GType the_type = 0;
|
757
|
-
|
758
|
-
if (the_type == 0)
|
759
|
-
{
|
760
|
-
static const GEnumValue values[] = {
|
761
|
-
{ LSM_MATHML_FONT_ERROR,
|
762
|
-
"LSM_MATHML_FONT_ERROR",
|
763
|
-
"error" },
|
764
|
-
{ LSM_MATHML_FONT_DEFAULT,
|
765
|
-
"LSM_MATHML_FONT_DEFAULT",
|
766
|
-
"default" },
|
767
|
-
{ LSM_MATHML_FONT_CMR10,
|
768
|
-
"LSM_MATHML_FONT_CMR10",
|
769
|
-
"cmr10" },
|
770
|
-
{ LSM_MATHML_FONT_CMMI10,
|
771
|
-
"LSM_MATHML_FONT_CMMI10",
|
772
|
-
"cmmi10" },
|
773
|
-
{ LSM_MATHML_FONT_CMEX10,
|
774
|
-
"LSM_MATHML_FONT_CMEX10",
|
775
|
-
"cmex10" },
|
776
|
-
{ LSM_MATHML_FONT_CMSY10,
|
777
|
-
"LSM_MATHML_FONT_CMSY10",
|
778
|
-
"cmsy10" },
|
779
|
-
{ LSM_MATHML_FONT_SYMBOL,
|
780
|
-
"LSM_MATHML_FONT_SYMBOL",
|
781
|
-
"symbol" },
|
782
|
-
{ 0, NULL, NULL }
|
783
|
-
};
|
784
|
-
the_type = g_enum_register_static (
|
785
|
-
g_intern_static_string ("LsmMathmlFont"),
|
786
|
-
values);
|
787
|
-
}
|
788
|
-
return the_type;
|
789
|
-
}
|
790
|
-
|
791
|
-
|
792
|
-
/* Generated data ends here */
|
793
|
-
|