All Projects → Nishant-Pathak → Mathview

Nishant-Pathak / Mathview

Licence: apache-2.0
One stop for all Math formula and Science equation rendering in Android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Mathview

Csharpmath
LaTeX. in C#. (ported from the wonderful iosMath project).
Stars: ✭ 205 (+188.73%)
Mutual labels:  latex, rendering, math
Katex
Fast math typesetting for the web.
Stars: ✭ 14,623 (+20495.77%)
Mutual labels:  latex, math
Jekyll Spaceship
🚀 A Jekyll plugin to provide powerful supports for table, mathjax, plantuml, mermaid, emoji, video, audio, youtube, vimeo, dailymotion, soundcloud, spotify, etc.
Stars: ✭ 196 (+176.06%)
Mutual labels:  latex, math
Angourimath
Open-source symbolic algebra library for C# and F#. One of the most powerful in .NET
Stars: ✭ 266 (+274.65%)
Mutual labels:  latex, math
Remark Math
remark and rehype plugins to support math
Stars: ✭ 129 (+81.69%)
Mutual labels:  latex, math
Texme
Self-rendering Markdown + LaTeX documents
Stars: ✭ 1,970 (+2674.65%)
Mutual labels:  latex, math
hfmath
Render LaTeX math with Hershey Fonts
Stars: ✭ 76 (+7.04%)
Mutual labels:  latex, math
React Katex
Display math in TeX with KaTeX and ReactJS
Stars: ✭ 345 (+385.92%)
Mutual labels:  latex, math
Wpf Math
.NET library for rendering mathematical formulae using the LaTeX typsetting style, for the WPF framework
Stars: ✭ 339 (+377.46%)
Mutual labels:  latex, math
Nerdamer
a symbolic math expression evaluator for javascript
Stars: ✭ 322 (+353.52%)
Mutual labels:  latex, math
Mathbin
Math pastebin with LaTeX and Markdown support
Stars: ✭ 83 (+16.9%)
Mutual labels:  latex, math
Mdmath
LaTeX Math for Markdown inside of Visual Studio Code.
Stars: ✭ 675 (+850.7%)
Mutual labels:  latex, math
Upmath.me
Markdown and LaTeX online editor - create text for web with equations and diagrams
Stars: ✭ 234 (+229.58%)
Mutual labels:  latex, math
Calculatex
in progress pretty printing calculator language
Stars: ✭ 302 (+325.35%)
Mutual labels:  latex, math
Fiduswriter
Fidus Writer is an online collaborative editor for academics.
Stars: ✭ 405 (+470.42%)
Mutual labels:  latex, math
Algebra Latex
Parse and calculate latex formatted math
Stars: ✭ 20 (-71.83%)
Mutual labels:  latex, math
Quickfont
A Modern OpenGL Font Rendering Library for OpenTK
Stars: ✭ 63 (-11.27%)
Mutual labels:  rendering
Real Time Rendering 3rd Cn Summary Ebook
📘 电子书 -《Real-Time Rendering 3rd》提炼总结 | 全书共9万7千余字。你可以把它看做中文通俗版的《Real-Time Rendering 3rd》,也可以把它看做《Real-Time Rendering 3rd》的解读版与配套学习伴侣,或者《Real-Time Rendering 4th》的前置阅读材料。
Stars: ✭ 1,159 (+1532.39%)
Mutual labels:  rendering
Formula Parser
Parsing and evaluating mathematical formulas given as strings.
Stars: ✭ 62 (-12.68%)
Mutual labels:  math
Numericannex
Numeric facilities for Swift
Stars: ✭ 63 (-11.27%)
Mutual labels:  math

Build Status

MathView

  • [x] Support all types of math encoding ( MathML, TeX or AsciiMath etc).
  • [x] Offline capability.
  • [x] Lightweight (~150kb).
  • [x] Fast rendering.
  • [x] Easy to use.
  • [x] Sample code MainActivity.java

Demo

Demo Url

Configured delimiters

  • TeX, inline mode: (...) or $...$
  • TeX, display mode: [...] or $$...$$
  • Asciimath: `...`

Installation

Add below lines to app's build.gradle

repositories {
  maven { url 'https://jitpack.io' }
}
dependencies {
  compile 'com.github.Nishant-Pathak:MathView:v1.1'
}

Usage

###In your layout:

    <com.nishant.math.MathView
        android:id="@+id/math_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

###In Activity:

  @BindView(R.id.math_view)
  MathView mathView;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    ...
    // update the view as below
    mathView.setText("`2+3 = 5`")
  }

###Proguard-rules:


-keepattributes EnclosingMethod
-keep class com.nishant.** { *; }

License

Copyright (C) 2016 - 2018 Nishant Pathak

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].