├── .gitignore ├── .travis.yml ├── CHANGELOG ├── CHANGELOG.md ├── COPYING ├── LICENSE ├── README-ORIGINAL.md ├── README.md ├── README_MINIMAL ├── TODO.md ├── app ├── build.gradle ├── screenshots │ ├── Screenshot_01.png │ ├── Screenshot_02.png │ ├── Screenshot_03.png │ ├── Screenshot_04.png │ ├── Screenshot_05.png │ ├── Screenshot_06.png │ └── Screenshot_07.png └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── ru │ │ └── noties │ │ └── jlatexmath │ │ └── android │ │ └── app │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── docs └── images │ ├── Formula1.png │ ├── Formula2.png │ ├── Formula3.png │ ├── Logo.png │ └── ScilabScreenshot.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jlatexmath-example-export ├── pom.xml └── src │ ├── README │ └── test │ ├── java │ └── org │ │ └── scilab │ │ └── forge │ │ └── jlatexmath │ │ └── examples │ │ └── export │ │ ├── Convert.java │ │ ├── Example1.java │ │ ├── Example2.java │ │ ├── Example3.java │ │ ├── Example4.java │ │ ├── Example5.java │ │ ├── ExamplesTest.java │ │ └── README │ └── resources │ ├── expected │ ├── Example1.png │ ├── Example1_shaped.png │ ├── Example2_shaped.png │ ├── Example3_shaped.png │ ├── Example4.png │ └── Example4_shaped.png │ ├── lion.png │ └── logging.properties ├── jlatexmath-example-giws ├── LaTeXGenerator.giws.xml ├── Makefile ├── README ├── examples-ant.vcxproj ├── examples-ant.vcxproj.filters ├── examples.sln ├── examples.vcxproj ├── examples.vcxproj.filters ├── latex.cpp ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── scilab │ └── forge │ └── example │ └── giws │ └── LaTeXGenerator.java ├── jlatexmath-font-cyrillic ├── COPYING ├── LICENSE ├── build.gradle ├── gradle.properties ├── pom.xml └── src │ └── main │ ├── AndroidManifest.xml │ └── assets │ └── org │ └── scilab │ └── forge │ └── jlatexmath │ └── fonts │ ├── jlm_cyrillic.map.xml │ ├── jlm_wnbx10.ttf │ ├── jlm_wnbx10.xml │ ├── jlm_wnbxti10.ttf │ ├── jlm_wnbxti10.xml │ ├── jlm_wnr10.ttf │ ├── jlm_wnr10.xml │ ├── jlm_wnss10.ttf │ ├── jlm_wnss10.xml │ ├── jlm_wnssbx10.ttf │ ├── jlm_wnssbx10.xml │ ├── jlm_wnssi10.ttf │ ├── jlm_wnssi10.xml │ ├── jlm_wnti10.ttf │ ├── jlm_wnti10.xml │ ├── jlm_wntt10.ttf │ ├── jlm_wntt10.xml │ ├── language_cyrillic.xml │ ├── mappings_cyrillic.xml │ └── symbols_cyrillic.xml ├── jlatexmath-font-greek ├── COPYING ├── LICENSE ├── build.gradle ├── gradle.properties ├── pom.xml └── src │ └── main │ ├── AndroidManifest.xml │ └── assets │ └── org │ └── scilab │ └── forge │ └── jlatexmath │ └── fonts │ ├── jlm_fcmbipg.ttf │ ├── jlm_fcmbipg.xml │ ├── jlm_fcmbpg.ttf │ ├── jlm_fcmbpg.xml │ ├── jlm_fcmripg.ttf │ ├── jlm_fcmripg.xml │ ├── jlm_fcmrpg.ttf │ ├── jlm_fcmrpg.xml │ ├── jlm_fcsbpg.ttf │ ├── jlm_fcsbpg.xml │ ├── jlm_fcsropg.ttf │ ├── jlm_fcsropg.xml │ ├── jlm_fcsrpg.ttf │ ├── jlm_fcsrpg.xml │ ├── jlm_fctrpg.ttf │ ├── jlm_fctrpg.xml │ ├── jlm_greek.map.xml │ ├── language_greek.xml │ ├── mappings_greek.xml │ └── symbols_greek.xml ├── jlatexmath-fop ├── COPYING ├── LICENSE ├── README ├── doc │ ├── README │ ├── equations │ │ ├── chimie.xml │ │ ├── eq-2dim.xml │ │ ├── eq-tres-compliquee-2.xml │ │ └── eq-tres-compliquee.xml │ ├── imprimables │ │ └── doc-jlatexmath.pdf │ ├── programmes │ │ ├── fibo.e │ │ └── fibonacci.e │ └── xml │ │ ├── doc-jlatexmath.xml │ │ └── gpl-3.0.xml ├── examples │ ├── README │ ├── conf.xml │ ├── latex.fo │ ├── latex.pdf │ ├── latex.xsl │ ├── latex_docbook.pdf │ ├── latex_docbook.xml │ └── times.pdf ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── scilab │ │ └── forge │ │ └── jlatexmath │ │ └── fop │ │ ├── JLaTeXMathElement.java │ │ ├── JLaTeXMathElementMapping.java │ │ ├── JLaTeXMathObj.java │ │ ├── JLaTeXMathXMLHandler.java │ │ └── image │ │ ├── ImageJLaTeXMath.java │ │ └── loader │ │ ├── Graphics2DImagePainterJLaTeXMath.java │ │ ├── ImageConverterJLaTeXMathToG2D.java │ │ ├── ImageLoaderFactoryJLaTeXMath.java │ │ ├── ImageLoaderJLaTeXMath.java │ │ └── PreloaderJLaTeXMath.java │ └── resources │ └── META-INF │ └── services │ ├── org.apache.fop.fo.ElementMapping │ ├── org.apache.fop.render.XMLHandler │ ├── org.apache.xmlgraphics.image.loader.spi.ImageConverter │ ├── org.apache.xmlgraphics.image.loader.spi.ImageLoaderFactory │ └── org.apache.xmlgraphics.image.loader.spi.ImagePreloader ├── jlatexmath-ignore └── pom.xml ├── jlatexmath ├── COPYING ├── LICENSE ├── build.gradle ├── gradle.properties ├── pom.xml └── src │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── org │ │ │ └── scilab │ │ │ └── forge │ │ │ └── jlatexmath │ │ │ ├── DefaultTeXFont.xml │ │ │ ├── GlueSettings.xml │ │ │ ├── TeXFormulaSettings.xml │ │ │ ├── TeXSymbols.xml │ │ │ └── fonts │ │ │ ├── base │ │ │ ├── jlm_amsfonts.map.xml │ │ │ ├── jlm_amssymb.map.xml │ │ │ ├── jlm_base.map.xml │ │ │ ├── jlm_cmex10.ttf │ │ │ ├── jlm_cmex10.xml │ │ │ ├── jlm_cmmi10.ttf │ │ │ ├── jlm_cmmi10.xml │ │ │ ├── jlm_cmmi10_unchanged.xml │ │ │ ├── jlm_cmmib10.ttf │ │ │ ├── jlm_cmmib10.xml │ │ │ ├── jlm_cmmib10_unchanged.xml │ │ │ └── jlm_moustache.xml │ │ │ ├── euler │ │ │ ├── jlm_eufb10.ttf │ │ │ ├── jlm_eufb10.xml │ │ │ ├── jlm_eufm10.ttf │ │ │ └── jlm_eufm10.xml │ │ │ ├── latin │ │ │ ├── jlm_cmr10.ttf │ │ │ ├── jlm_cmr10.xml │ │ │ ├── jlm_jlmbi10.ttf │ │ │ ├── jlm_jlmbi10.xml │ │ │ ├── jlm_jlmbx10.ttf │ │ │ ├── jlm_jlmbx10.xml │ │ │ ├── jlm_jlmi10.ttf │ │ │ ├── jlm_jlmi10.xml │ │ │ ├── jlm_jlmr10.ttf │ │ │ ├── jlm_jlmr10.xml │ │ │ ├── jlm_jlmr10_unchanged.xml │ │ │ ├── jlm_jlmsb10.ttf │ │ │ ├── jlm_jlmsb10.xml │ │ │ ├── jlm_jlmsbi10.ttf │ │ │ ├── jlm_jlmsbi10.xml │ │ │ ├── jlm_jlmsi10.ttf │ │ │ ├── jlm_jlmsi10.xml │ │ │ ├── jlm_jlmss10.ttf │ │ │ ├── jlm_jlmss10.xml │ │ │ ├── jlm_jlmtt10.ttf │ │ │ ├── jlm_jlmtt10.xml │ │ │ └── optional │ │ │ │ ├── jlm_cmbx10.ttf │ │ │ │ ├── jlm_cmbx10.xml │ │ │ │ ├── jlm_cmbxti10.ttf │ │ │ │ ├── jlm_cmbxti10.xml │ │ │ │ ├── jlm_cmss10.ttf │ │ │ │ ├── jlm_cmss10.xml │ │ │ │ ├── jlm_cmssbx10.ttf │ │ │ │ ├── jlm_cmssbx10.xml │ │ │ │ ├── jlm_cmssi10.ttf │ │ │ │ ├── jlm_cmssi10.xml │ │ │ │ ├── jlm_cmti10.ttf │ │ │ │ ├── jlm_cmti10.xml │ │ │ │ ├── jlm_cmti10_unchanged.xml │ │ │ │ ├── jlm_cmtt10.ttf │ │ │ │ └── jlm_cmtt10.xml │ │ │ ├── licences │ │ │ ├── Knuth_License.txt │ │ │ ├── License_for_dsrom.txt │ │ │ └── OFL.txt │ │ │ └── maths │ │ │ ├── jlm_cmbsy10.ttf │ │ │ ├── jlm_cmbsy10.xml │ │ │ ├── jlm_cmsy10.ttf │ │ │ ├── jlm_cmsy10.xml │ │ │ ├── jlm_msam10.ttf │ │ │ ├── jlm_msam10.xml │ │ │ ├── jlm_msbm10.ttf │ │ │ ├── jlm_msbm10.xml │ │ │ ├── jlm_rsfs10.ttf │ │ │ ├── jlm_rsfs10.xml │ │ │ ├── jlm_special.map.xml │ │ │ ├── jlm_special.ttf │ │ │ ├── jlm_special.xml │ │ │ ├── jlm_stmary10.ttf │ │ │ ├── jlm_stmary10.xml │ │ │ ├── jlm_stmaryrd.map.xml │ │ │ └── optional │ │ │ ├── jlm_dsrom10.ttf │ │ │ └── jlm_dsrom10.xml │ ├── java │ │ ├── org │ │ │ └── scilab │ │ │ │ └── forge │ │ │ │ └── jlatexmath │ │ │ │ ├── AccentedAtom.java │ │ │ │ ├── AlphabetRegistration.java │ │ │ │ ├── AlphabetRegistrationException.java │ │ │ │ ├── ArrayOfAtoms.java │ │ │ │ ├── Atom.java │ │ │ │ ├── BigDelimiterAtom.java │ │ │ │ ├── BigOperatorAtom.java │ │ │ │ ├── BoldAtom.java │ │ │ │ ├── Box.java │ │ │ │ ├── BreakFormula.java │ │ │ │ ├── BreakMarkAtom.java │ │ │ │ ├── CedillaAtom.java │ │ │ │ ├── Char.java │ │ │ │ ├── CharAtom.java │ │ │ │ ├── CharBox.java │ │ │ │ ├── CharFont.java │ │ │ │ ├── CharSymbol.java │ │ │ │ ├── ColorAtom.java │ │ │ │ ├── CumulativeScriptsAtom.java │ │ │ │ ├── DdotsAtom.java │ │ │ │ ├── DefaultTeXFont.java │ │ │ │ ├── DefaultTeXFontParser.java │ │ │ │ ├── DelimiterFactory.java │ │ │ │ ├── DelimiterMappingNotFoundException.java │ │ │ │ ├── DoubleFramedAtom.java │ │ │ │ ├── Dummy.java │ │ │ │ ├── EmptyAtom.java │ │ │ │ ├── EmptyFormulaException.java │ │ │ │ ├── Extension.java │ │ │ │ ├── FBoxAtom.java │ │ │ │ ├── FcscoreAtom.java │ │ │ │ ├── FcscoreBox.java │ │ │ │ ├── FencedAtom.java │ │ │ │ ├── FixedCharAtom.java │ │ │ │ ├── FontAlreadyLoadedException.java │ │ │ │ ├── FontInfo.java │ │ │ │ ├── FormulaNotFoundException.java │ │ │ │ ├── FractionAtom.java │ │ │ │ ├── FramedBox.java │ │ │ │ ├── GeoGebraLogoAtom.java │ │ │ │ ├── GeoGebraLogoBox.java │ │ │ │ ├── Glue.java │ │ │ │ ├── GlueBox.java │ │ │ │ ├── GlueSettingsParser.java │ │ │ │ ├── GraphicsAtom.java │ │ │ │ ├── GraphicsBox.java │ │ │ │ ├── HdotsforAtom.java │ │ │ │ ├── HlineAtom.java │ │ │ │ ├── HorizontalBox.java │ │ │ │ ├── HorizontalRule.java │ │ │ │ ├── IJAtom.java │ │ │ │ ├── IddotsAtom.java │ │ │ │ ├── InvalidAtomTypeException.java │ │ │ │ ├── InvalidDelimiterException.java │ │ │ │ ├── InvalidDelimiterTypeException.java │ │ │ │ ├── InvalidMatrixException.java │ │ │ │ ├── InvalidSymbolTypeException.java │ │ │ │ ├── InvalidTeXFormulaException.java │ │ │ │ ├── InvalidUnitException.java │ │ │ │ ├── ItAtom.java │ │ │ │ ├── JMathTeXException.java │ │ │ │ ├── JavaFontRenderingAtom.java │ │ │ │ ├── JavaFontRenderingBox.java │ │ │ │ ├── LCaronAtom.java │ │ │ │ ├── LaTeXAtom.java │ │ │ │ ├── LapedAtom.java │ │ │ │ ├── LongdivAtom.java │ │ │ │ ├── MacroInfo.java │ │ │ │ ├── MathAtom.java │ │ │ │ ├── MatrixAtom.java │ │ │ │ ├── Metrics.java │ │ │ │ ├── MiddleAtom.java │ │ │ │ ├── MonoScaleAtom.java │ │ │ │ ├── MulticolumnAtom.java │ │ │ │ ├── MultlineAtom.java │ │ │ │ ├── NewCommandMacro.java │ │ │ │ ├── NewEnvironmentMacro.java │ │ │ │ ├── NthRoot.java │ │ │ │ ├── OgonekAtom.java │ │ │ │ ├── OvalAtom.java │ │ │ │ ├── OvalBox.java │ │ │ │ ├── OverBar.java │ │ │ │ ├── OverUnderBox.java │ │ │ │ ├── OverUnderDelimiter.java │ │ │ │ ├── OverlinedAtom.java │ │ │ │ ├── ParseException.java │ │ │ │ ├── ParseOption.java │ │ │ │ ├── PhantomAtom.java │ │ │ │ ├── PredefMacroInfo.java │ │ │ │ ├── PredefMacros.java │ │ │ │ ├── PredefinedCommands.java │ │ │ │ ├── PredefinedTeXFormulaParser.java │ │ │ │ ├── PredefinedTeXFormulas.java │ │ │ │ ├── RaiseAtom.java │ │ │ │ ├── ReflectAtom.java │ │ │ │ ├── ReflectBox.java │ │ │ │ ├── ResizeAtom.java │ │ │ │ ├── ResourceParseException.java │ │ │ │ ├── RomanAtom.java │ │ │ │ ├── RotateAtom.java │ │ │ │ ├── RotateBox.java │ │ │ │ ├── Row.java │ │ │ │ ├── RowAtom.java │ │ │ │ ├── RuleAtom.java │ │ │ │ ├── ScaleAtom.java │ │ │ │ ├── ScaleBox.java │ │ │ │ ├── ScriptsAtom.java │ │ │ │ ├── ShadowAtom.java │ │ │ │ ├── ShadowBox.java │ │ │ │ ├── SmallCapAtom.java │ │ │ │ ├── SmashedAtom.java │ │ │ │ ├── SpaceAtom.java │ │ │ │ ├── SsAtom.java │ │ │ │ ├── StrikeThroughAtom.java │ │ │ │ ├── StrutBox.java │ │ │ │ ├── StyleAtom.java │ │ │ │ ├── SymbolAtom.java │ │ │ │ ├── SymbolMappingNotFoundException.java │ │ │ │ ├── SymbolNotFoundException.java │ │ │ │ ├── TStrokeAtom.java │ │ │ │ ├── TeXConstants.java │ │ │ │ ├── TeXEnvironment.java │ │ │ │ ├── TeXFont.java │ │ │ │ ├── TeXFormula.java │ │ │ │ ├── TeXFormulaParser.java │ │ │ │ ├── TeXFormulaSettingsParser.java │ │ │ │ ├── TeXIcon.java │ │ │ │ ├── TeXParser.java │ │ │ │ ├── TeXSymbolParser.java │ │ │ │ ├── TextCircledAtom.java │ │ │ │ ├── TextStyleAtom.java │ │ │ │ ├── TextStyleMappingNotFoundException.java │ │ │ │ ├── TtAtom.java │ │ │ │ ├── TypedAtom.java │ │ │ │ ├── URLAlphabetRegistration.java │ │ │ │ ├── UnderOverArrowAtom.java │ │ │ │ ├── UnderOverAtom.java │ │ │ │ ├── UnderlinedAtom.java │ │ │ │ ├── UnderscoreAtom.java │ │ │ │ ├── VCenteredAtom.java │ │ │ │ ├── VRowAtom.java │ │ │ │ ├── VdotsAtom.java │ │ │ │ ├── VerticalBox.java │ │ │ │ ├── VlineAtom.java │ │ │ │ ├── WebStartAlphabetRegistration.java │ │ │ │ ├── XArrowAtom.java │ │ │ │ ├── XLeftRightArrowFactory.java │ │ │ │ ├── XMLResourceParseException.java │ │ │ │ ├── cache │ │ │ │ └── JLaTeXMathCache.java │ │ │ │ ├── cyrillic │ │ │ │ └── CyrillicRegistration.java │ │ │ │ ├── dynamic │ │ │ │ ├── DynamicAtom.java │ │ │ │ ├── ExternalConverter.java │ │ │ │ └── ExternalConverterFactory.java │ │ │ │ ├── greek │ │ │ │ └── GreekRegistration.java │ │ │ │ ├── internal │ │ │ │ └── util │ │ │ │ │ └── Images.java │ │ │ │ └── tcaronAtom.java │ │ └── ru │ │ │ └── noties │ │ │ └── jlatexmath │ │ │ ├── JLatexMathAndroid.java │ │ │ ├── JLatexMathDrawable.java │ │ │ ├── JLatexMathInitProvider.java │ │ │ ├── JLatexMathView.java │ │ │ ├── awt │ │ │ ├── AndroidGraphics2D.java │ │ │ ├── BasicStroke.java │ │ │ ├── Color.java │ │ │ ├── Component.java │ │ │ ├── Font.java │ │ │ ├── Graphics.java │ │ │ ├── Graphics2D.java │ │ │ ├── GraphicsEnvironment.java │ │ │ ├── Image.java │ │ │ ├── Insets.java │ │ │ ├── RenderingHints.java │ │ │ ├── Stroke.java │ │ │ ├── Toolkit.java │ │ │ ├── font │ │ │ │ ├── FontRenderContext.java │ │ │ │ └── TextLayout.java │ │ │ ├── geom │ │ │ │ ├── AffineTransform.java │ │ │ │ ├── Line2D.java │ │ │ │ ├── Point2D.java │ │ │ │ ├── Rectangle2D.java │ │ │ │ └── RoundRectangle2D.java │ │ │ └── image │ │ │ │ └── BufferedImage.java │ │ │ └── swing │ │ │ └── Icon.java │ └── res │ │ └── values │ │ └── attrs.xml │ └── test │ ├── java │ └── org │ │ └── scilab │ │ └── forge │ │ └── jlatexmath │ │ ├── Benchmarks.java │ │ └── examples │ │ ├── basic │ │ ├── Example1.java │ │ ├── Example2.java │ │ ├── Example3.java │ │ ├── Example4.java │ │ ├── Example5.java │ │ ├── Example6.java │ │ ├── Example7.java │ │ ├── Example8.java │ │ ├── Example9.java │ │ ├── ExampleSwing2.java │ │ └── ExamplesTest.java │ │ └── macros │ │ ├── FooPackage.java │ │ ├── FooPackageTest.java │ │ └── README │ └── resources │ ├── Package_Foo.xml │ ├── expected │ ├── Example1.png │ ├── Example2.png │ ├── Example3.png │ ├── Example4.png │ ├── Example5.png │ ├── Example6.png │ ├── Example8.png │ ├── Example9.png │ └── ExampleMacros.png │ └── lion.png ├── local.properties ├── pom.xml ├── release.sh └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ORIGINAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/README-ORIGINAL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/README.md -------------------------------------------------------------------------------- /README_MINIMAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/README_MINIMAL -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/screenshots/Screenshot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/screenshots/Screenshot_01.png -------------------------------------------------------------------------------- /app/screenshots/Screenshot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/screenshots/Screenshot_02.png -------------------------------------------------------------------------------- /app/screenshots/Screenshot_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/screenshots/Screenshot_03.png -------------------------------------------------------------------------------- /app/screenshots/Screenshot_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/screenshots/Screenshot_04.png -------------------------------------------------------------------------------- /app/screenshots/Screenshot_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/screenshots/Screenshot_05.png -------------------------------------------------------------------------------- /app/screenshots/Screenshot_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/screenshots/Screenshot_06.png -------------------------------------------------------------------------------- /app/screenshots/Screenshot_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/screenshots/Screenshot_07.png -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/ru/noties/jlatexmath/android/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/src/main/java/ru/noties/jlatexmath/android/app/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /docs/images/Formula1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/docs/images/Formula1.png -------------------------------------------------------------------------------- /docs/images/Formula2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/docs/images/Formula2.png -------------------------------------------------------------------------------- /docs/images/Formula3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/docs/images/Formula3.png -------------------------------------------------------------------------------- /docs/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/docs/images/Logo.png -------------------------------------------------------------------------------- /docs/images/ScilabScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/docs/images/ScilabScreenshot.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jlatexmath-example-export/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/pom.xml -------------------------------------------------------------------------------- /jlatexmath-example-export/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/README -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Convert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Convert.java -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example1.java -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example2.java -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example3.java -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example4.java -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/Example5.java -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/ExamplesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/ExamplesTest.java -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/java/org/scilab/forge/jlatexmath/examples/export/README -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/resources/expected/Example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/resources/expected/Example1.png -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/resources/expected/Example1_shaped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/resources/expected/Example1_shaped.png -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/resources/expected/Example2_shaped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/resources/expected/Example2_shaped.png -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/resources/expected/Example3_shaped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/resources/expected/Example3_shaped.png -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/resources/expected/Example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/resources/expected/Example4.png -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/resources/expected/Example4_shaped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/resources/expected/Example4_shaped.png -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/resources/lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-export/src/test/resources/lion.png -------------------------------------------------------------------------------- /jlatexmath-example-export/src/test/resources/logging.properties: -------------------------------------------------------------------------------- 1 | org.apache.fop.level = SEVERE -------------------------------------------------------------------------------- /jlatexmath-example-giws/LaTeXGenerator.giws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/LaTeXGenerator.giws.xml -------------------------------------------------------------------------------- /jlatexmath-example-giws/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/Makefile -------------------------------------------------------------------------------- /jlatexmath-example-giws/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/README -------------------------------------------------------------------------------- /jlatexmath-example-giws/examples-ant.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/examples-ant.vcxproj -------------------------------------------------------------------------------- /jlatexmath-example-giws/examples-ant.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/examples-ant.vcxproj.filters -------------------------------------------------------------------------------- /jlatexmath-example-giws/examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/examples.sln -------------------------------------------------------------------------------- /jlatexmath-example-giws/examples.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/examples.vcxproj -------------------------------------------------------------------------------- /jlatexmath-example-giws/examples.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/examples.vcxproj.filters -------------------------------------------------------------------------------- /jlatexmath-example-giws/latex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/latex.cpp -------------------------------------------------------------------------------- /jlatexmath-example-giws/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/pom.xml -------------------------------------------------------------------------------- /jlatexmath-example-giws/src/main/java/org/scilab/forge/example/giws/LaTeXGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-example-giws/src/main/java/org/scilab/forge/example/giws/LaTeXGenerator.java -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/COPYING -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/LICENSE -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/build.gradle -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/gradle.properties -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/pom.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_cyrillic.map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_cyrillic.map.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnbx10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnbx10.ttf -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnbx10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnbx10.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnbxti10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnbxti10.ttf -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnbxti10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnbxti10.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnr10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnr10.ttf -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnr10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnr10.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnss10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnss10.ttf -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnss10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnss10.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnssbx10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnssbx10.ttf -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnssbx10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnssbx10.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnssi10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnssi10.ttf -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnssi10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnssi10.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnti10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnti10.ttf -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnti10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wnti10.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wntt10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wntt10.ttf -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wntt10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_wntt10.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/language_cyrillic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/language_cyrillic.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/mappings_cyrillic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/mappings_cyrillic.xml -------------------------------------------------------------------------------- /jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/symbols_cyrillic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-cyrillic/src/main/assets/org/scilab/forge/jlatexmath/fonts/symbols_cyrillic.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/COPYING -------------------------------------------------------------------------------- /jlatexmath-font-greek/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/LICENSE -------------------------------------------------------------------------------- /jlatexmath-font-greek/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/build.gradle -------------------------------------------------------------------------------- /jlatexmath-font-greek/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/gradle.properties -------------------------------------------------------------------------------- /jlatexmath-font-greek/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/pom.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmbipg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmbipg.ttf -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmbipg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmbipg.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmbpg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmbpg.ttf -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmbpg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmbpg.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmripg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmripg.ttf -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmripg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmripg.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmrpg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmrpg.ttf -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmrpg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcmrpg.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsbpg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsbpg.ttf -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsbpg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsbpg.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsropg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsropg.ttf -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsropg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsropg.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsrpg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsrpg.ttf -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsrpg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fcsrpg.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fctrpg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fctrpg.ttf -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fctrpg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_fctrpg.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_greek.map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/jlm_greek.map.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/language_greek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/language_greek.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/mappings_greek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/mappings_greek.xml -------------------------------------------------------------------------------- /jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/symbols_greek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-font-greek/src/main/assets/org/scilab/forge/jlatexmath/fonts/symbols_greek.xml -------------------------------------------------------------------------------- /jlatexmath-fop/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/COPYING -------------------------------------------------------------------------------- /jlatexmath-fop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/LICENSE -------------------------------------------------------------------------------- /jlatexmath-fop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/README -------------------------------------------------------------------------------- /jlatexmath-fop/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/README -------------------------------------------------------------------------------- /jlatexmath-fop/doc/equations/chimie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/equations/chimie.xml -------------------------------------------------------------------------------- /jlatexmath-fop/doc/equations/eq-2dim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/equations/eq-2dim.xml -------------------------------------------------------------------------------- /jlatexmath-fop/doc/equations/eq-tres-compliquee-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/equations/eq-tres-compliquee-2.xml -------------------------------------------------------------------------------- /jlatexmath-fop/doc/equations/eq-tres-compliquee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/equations/eq-tres-compliquee.xml -------------------------------------------------------------------------------- /jlatexmath-fop/doc/imprimables/doc-jlatexmath.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/imprimables/doc-jlatexmath.pdf -------------------------------------------------------------------------------- /jlatexmath-fop/doc/programmes/fibo.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/programmes/fibo.e -------------------------------------------------------------------------------- /jlatexmath-fop/doc/programmes/fibonacci.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/programmes/fibonacci.e -------------------------------------------------------------------------------- /jlatexmath-fop/doc/xml/doc-jlatexmath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/xml/doc-jlatexmath.xml -------------------------------------------------------------------------------- /jlatexmath-fop/doc/xml/gpl-3.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/doc/xml/gpl-3.0.xml -------------------------------------------------------------------------------- /jlatexmath-fop/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/examples/README -------------------------------------------------------------------------------- /jlatexmath-fop/examples/conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/examples/conf.xml -------------------------------------------------------------------------------- /jlatexmath-fop/examples/latex.fo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/examples/latex.fo -------------------------------------------------------------------------------- /jlatexmath-fop/examples/latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/examples/latex.pdf -------------------------------------------------------------------------------- /jlatexmath-fop/examples/latex.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/examples/latex.xsl -------------------------------------------------------------------------------- /jlatexmath-fop/examples/latex_docbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/examples/latex_docbook.pdf -------------------------------------------------------------------------------- /jlatexmath-fop/examples/latex_docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/examples/latex_docbook.xml -------------------------------------------------------------------------------- /jlatexmath-fop/examples/times.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/examples/times.pdf -------------------------------------------------------------------------------- /jlatexmath-fop/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/pom.xml -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/JLaTeXMathElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/JLaTeXMathElement.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/JLaTeXMathElementMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/JLaTeXMathElementMapping.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/JLaTeXMathObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/JLaTeXMathObj.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/JLaTeXMathXMLHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/JLaTeXMathXMLHandler.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/ImageJLaTeXMath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/ImageJLaTeXMath.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/Graphics2DImagePainterJLaTeXMath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/Graphics2DImagePainterJLaTeXMath.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/ImageConverterJLaTeXMathToG2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/ImageConverterJLaTeXMathToG2D.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/ImageLoaderFactoryJLaTeXMath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/ImageLoaderFactoryJLaTeXMath.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/ImageLoaderJLaTeXMath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/ImageLoaderJLaTeXMath.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/PreloaderJLaTeXMath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/java/org/scilab/forge/jlatexmath/fop/image/loader/PreloaderJLaTeXMath.java -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/resources/META-INF/services/org.apache.fop.fo.ElementMapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/resources/META-INF/services/org.apache.fop.fo.ElementMapping -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/resources/META-INF/services/org.apache.fop.render.XMLHandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/resources/META-INF/services/org.apache.fop.render.XMLHandler -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/resources/META-INF/services/org.apache.xmlgraphics.image.loader.spi.ImageConverter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/resources/META-INF/services/org.apache.xmlgraphics.image.loader.spi.ImageConverter -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/resources/META-INF/services/org.apache.xmlgraphics.image.loader.spi.ImageLoaderFactory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/resources/META-INF/services/org.apache.xmlgraphics.image.loader.spi.ImageLoaderFactory -------------------------------------------------------------------------------- /jlatexmath-fop/src/main/resources/META-INF/services/org.apache.xmlgraphics.image.loader.spi.ImagePreloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-fop/src/main/resources/META-INF/services/org.apache.xmlgraphics.image.loader.spi.ImagePreloader -------------------------------------------------------------------------------- /jlatexmath-ignore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath-ignore/pom.xml -------------------------------------------------------------------------------- /jlatexmath/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/COPYING -------------------------------------------------------------------------------- /jlatexmath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/LICENSE -------------------------------------------------------------------------------- /jlatexmath/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/build.gradle -------------------------------------------------------------------------------- /jlatexmath/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/gradle.properties -------------------------------------------------------------------------------- /jlatexmath/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/pom.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/DefaultTeXFont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/DefaultTeXFont.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/GlueSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/GlueSettings.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/TeXFormulaSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/TeXFormulaSettings.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/TeXSymbols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/TeXSymbols.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_amsfonts.map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_amsfonts.map.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_amssymb.map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_amssymb.map.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_base.map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_base.map.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmex10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmex10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmex10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmex10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmi10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmi10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmi10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmi10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmi10_unchanged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmi10_unchanged.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmib10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmib10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmib10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmib10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmib10_unchanged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_cmmib10_unchanged.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_moustache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/base/jlm_moustache.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/euler/jlm_eufb10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/euler/jlm_eufb10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/euler/jlm_eufb10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/euler/jlm_eufb10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/euler/jlm_eufm10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/euler/jlm_eufm10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/euler/jlm_eufm10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/euler/jlm_eufm10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_cmr10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_cmr10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_cmr10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_cmr10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmbi10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmbi10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmbi10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmbi10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmbx10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmbx10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmbx10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmbx10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmi10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmi10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmi10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmi10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmr10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmr10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmr10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmr10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmr10_unchanged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmr10_unchanged.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsb10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsb10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsb10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsb10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsbi10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsbi10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsbi10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsbi10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsi10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsi10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsi10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsi10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmss10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmss10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmss10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmss10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmtt10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmtt10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmtt10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmtt10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmbx10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmbx10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmbx10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmbx10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmbxti10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmbxti10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmbxti10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmbxti10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmss10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmss10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmss10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmss10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmssbx10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmssbx10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmssbx10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmssbx10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmssi10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmssi10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmssi10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmssi10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmti10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmti10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmti10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmti10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmti10_unchanged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmti10_unchanged.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmtt10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmtt10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmtt10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/optional/jlm_cmtt10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/licences/Knuth_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/licences/Knuth_License.txt -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/licences/License_for_dsrom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/licences/License_for_dsrom.txt -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/licences/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/licences/OFL.txt -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_cmbsy10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_cmbsy10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_cmbsy10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_cmbsy10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_cmsy10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_cmsy10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_cmsy10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_cmsy10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_msam10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_msam10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_msam10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_msam10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_msbm10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_msbm10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_msbm10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_msbm10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_rsfs10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_rsfs10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_rsfs10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_rsfs10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_special.map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_special.map.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_special.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_special.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_special.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_stmary10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_stmary10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_stmary10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_stmary10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_stmaryrd.map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/jlm_stmaryrd.map.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/optional/jlm_dsrom10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/optional/jlm_dsrom10.ttf -------------------------------------------------------------------------------- /jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/optional/jlm_dsrom10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/maths/optional/jlm_dsrom10.xml -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/AccentedAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/AccentedAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/AlphabetRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/AlphabetRegistration.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/AlphabetRegistrationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/AlphabetRegistrationException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ArrayOfAtoms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ArrayOfAtoms.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Atom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Atom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BigDelimiterAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BigDelimiterAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BigOperatorAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BigOperatorAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BoldAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BoldAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Box.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Box.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BreakFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BreakFormula.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BreakMarkAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/BreakMarkAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CedillaAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CedillaAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Char.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Char.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CharAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CharAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CharBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CharBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CharFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CharFont.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CharSymbol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CharSymbol.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ColorAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ColorAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CumulativeScriptsAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/CumulativeScriptsAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DdotsAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DdotsAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DefaultTeXFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DefaultTeXFont.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DefaultTeXFontParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DefaultTeXFontParser.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DelimiterFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DelimiterFactory.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DelimiterMappingNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DelimiterMappingNotFoundException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DoubleFramedAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/DoubleFramedAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Dummy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Dummy.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/EmptyAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/EmptyAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/EmptyFormulaException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/EmptyFormulaException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Extension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Extension.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FBoxAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FBoxAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FcscoreAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FcscoreAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FcscoreBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FcscoreBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FencedAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FencedAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FixedCharAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FixedCharAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FontAlreadyLoadedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FontAlreadyLoadedException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FontInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FontInfo.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FormulaNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FormulaNotFoundException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FractionAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FractionAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FramedBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/FramedBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GeoGebraLogoAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GeoGebraLogoAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GeoGebraLogoBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GeoGebraLogoBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Glue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Glue.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GlueBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GlueBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GlueSettingsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GlueSettingsParser.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GraphicsAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GraphicsAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GraphicsBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/GraphicsBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/HdotsforAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/HdotsforAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/HlineAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/HlineAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/HorizontalBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/HorizontalBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/HorizontalRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/HorizontalRule.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/IJAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/IJAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/IddotsAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/IddotsAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidAtomTypeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidAtomTypeException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidDelimiterException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidDelimiterException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidDelimiterTypeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidDelimiterTypeException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidMatrixException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidMatrixException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidSymbolTypeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidSymbolTypeException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidTeXFormulaException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidTeXFormulaException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidUnitException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/InvalidUnitException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ItAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ItAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/JMathTeXException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/JMathTeXException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/JavaFontRenderingAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/JavaFontRenderingAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/JavaFontRenderingBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/JavaFontRenderingBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/LCaronAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/LCaronAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/LaTeXAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/LaTeXAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/LapedAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/LapedAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/LongdivAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/LongdivAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MacroInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MacroInfo.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MathAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MathAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MatrixAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MatrixAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Metrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Metrics.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MiddleAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MiddleAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MonoScaleAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MonoScaleAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MulticolumnAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MulticolumnAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MultlineAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/MultlineAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/NewCommandMacro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/NewCommandMacro.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/NewEnvironmentMacro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/NewEnvironmentMacro.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/NthRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/NthRoot.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OgonekAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OgonekAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OvalAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OvalAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OvalBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OvalBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OverBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OverBar.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OverUnderBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OverUnderBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OverUnderDelimiter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OverUnderDelimiter.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OverlinedAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/OverlinedAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ParseException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ParseOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ParseOption.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PhantomAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PhantomAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefMacroInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefMacroInfo.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefMacros.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefMacros.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefinedCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefinedCommands.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefinedTeXFormulaParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefinedTeXFormulaParser.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefinedTeXFormulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/PredefinedTeXFormulas.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RaiseAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RaiseAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ReflectAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ReflectAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ReflectBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ReflectBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ResizeAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ResizeAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ResourceParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ResourceParseException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RomanAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RomanAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RotateAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RotateAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RotateBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RotateBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Row.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/Row.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RowAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RowAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RuleAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/RuleAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ScaleAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ScaleAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ScaleBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ScaleBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ScriptsAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ScriptsAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ShadowAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ShadowAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ShadowBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/ShadowBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SmallCapAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SmallCapAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SmashedAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SmashedAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SpaceAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SpaceAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SsAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SsAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/StrikeThroughAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/StrikeThroughAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/StrutBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/StrutBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/StyleAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/StyleAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SymbolAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SymbolAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SymbolMappingNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SymbolMappingNotFoundException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SymbolNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/SymbolNotFoundException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TStrokeAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TStrokeAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXConstants.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXEnvironment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXEnvironment.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXFont.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXFormula.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXFormulaParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXFormulaParser.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXFormulaSettingsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXFormulaSettingsParser.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXIcon.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXParser.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXSymbolParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TeXSymbolParser.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TextCircledAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TextCircledAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TextStyleAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TextStyleAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TextStyleMappingNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TextStyleMappingNotFoundException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TtAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TtAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TypedAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/TypedAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/URLAlphabetRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/URLAlphabetRegistration.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/UnderOverArrowAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/UnderOverArrowAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/UnderOverAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/UnderOverAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/UnderlinedAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/UnderlinedAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/UnderscoreAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/UnderscoreAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VCenteredAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VCenteredAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VRowAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VRowAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VdotsAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VdotsAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VerticalBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VerticalBox.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VlineAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/VlineAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/WebStartAlphabetRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/WebStartAlphabetRegistration.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/XArrowAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/XArrowAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/XLeftRightArrowFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/XLeftRightArrowFactory.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/XMLResourceParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/XMLResourceParseException.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/cache/JLaTeXMathCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/cache/JLaTeXMathCache.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/cyrillic/CyrillicRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/cyrillic/CyrillicRegistration.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/dynamic/DynamicAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/dynamic/DynamicAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/dynamic/ExternalConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/dynamic/ExternalConverter.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/dynamic/ExternalConverterFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/dynamic/ExternalConverterFactory.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/greek/GreekRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/greek/GreekRegistration.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/internal/util/Images.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/internal/util/Images.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/org/scilab/forge/jlatexmath/tcaronAtom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/org/scilab/forge/jlatexmath/tcaronAtom.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/JLatexMathAndroid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/JLatexMathAndroid.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/JLatexMathDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/JLatexMathDrawable.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/JLatexMathInitProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/JLatexMathInitProvider.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/JLatexMathView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/JLatexMathView.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/AndroidGraphics2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/AndroidGraphics2D.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/BasicStroke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/BasicStroke.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Color.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Component.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Component.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Font.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Font.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Graphics.java: -------------------------------------------------------------------------------- 1 | package ru.noties.jlatexmath.awt; 2 | 3 | public interface Graphics { 4 | } 5 | -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Graphics2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Graphics2D.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/GraphicsEnvironment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/GraphicsEnvironment.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Image.java: -------------------------------------------------------------------------------- 1 | package ru.noties.jlatexmath.awt; 2 | 3 | public class Image { 4 | } 5 | -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Insets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Insets.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/RenderingHints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/RenderingHints.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Stroke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Stroke.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Toolkit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/Toolkit.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/font/FontRenderContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/font/FontRenderContext.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/font/TextLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/font/TextLayout.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/AffineTransform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/AffineTransform.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/Line2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/Line2D.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/Point2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/Point2D.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/Rectangle2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/Rectangle2D.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/RoundRectangle2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/geom/RoundRectangle2D.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/awt/image/BufferedImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/awt/image/BufferedImage.java -------------------------------------------------------------------------------- /jlatexmath/src/main/java/ru/noties/jlatexmath/swing/Icon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/java/ru/noties/jlatexmath/swing/Icon.java -------------------------------------------------------------------------------- /jlatexmath/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/Benchmarks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/Benchmarks.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example1.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example2.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example3.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example4.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example5.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example6.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example7.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example8.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example9.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/Example9.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/ExampleSwing2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/ExampleSwing2.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/ExamplesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/basic/ExamplesTest.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/macros/FooPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/macros/FooPackage.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/macros/FooPackageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/macros/FooPackageTest.java -------------------------------------------------------------------------------- /jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/macros/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/java/org/scilab/forge/jlatexmath/examples/macros/README -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/Package_Foo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/Package_Foo.xml -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/Example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/Example1.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/Example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/Example2.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/Example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/Example3.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/Example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/Example4.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/Example5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/Example5.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/Example6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/Example6.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/Example8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/Example8.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/Example9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/Example9.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/expected/ExampleMacros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/expected/ExampleMacros.png -------------------------------------------------------------------------------- /jlatexmath/src/test/resources/lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/jlatexmath/src/test/resources/lion.png -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/local.properties -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/pom.xml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/release.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noties/jlatexmath-android/HEAD/settings.gradle --------------------------------------------------------------------------------