All Projects → mathquill → Mathquill

mathquill / Mathquill

Easily type math in your webapp

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
Less
1899 projects
Makefile
30231 projects
shell
77523 projects
CSS
56736 projects

Projects that are alternatives of or similar to Mathquill

Formula Parser
Parsing and evaluating mathematical formulas given as strings.
Stars: ✭ 62 (-96.85%)
Mutual labels:  math, formula, expression
keisan
A Ruby-based expression parser, evaluator, and programming language
Stars: ✭ 48 (-97.56%)
Mutual labels:  formula, math, equation
Mathdown
Collaborative markdown with math
Stars: ✭ 410 (-79.17%)
Mutual labels:  math, editor
Mathlive
A web component for easy math input
Stars: ✭ 416 (-78.86%)
Mutual labels:  math, editor
Vue Mathlive
Example of using the Vue wrapper for MathLive math editor
Stars: ✭ 52 (-97.36%)
Mutual labels:  math, editor
formulize
🌘 formula ui generator
Stars: ✭ 82 (-95.83%)
Mutual labels:  formula, expression
Wpf Math
.NET library for rendering mathematical formulae using the LaTeX typsetting style, for the WPF framework
Stars: ✭ 339 (-82.77%)
Mutual labels:  math, formula
Rich Text Editor
Math editor (http://digabi.github.io/rich-text-editor/)
Stars: ✭ 45 (-97.71%)
Mutual labels:  math, editor
mpsl
Shader-Like Mathematical Expression JIT Engine for C++ Language
Stars: ✭ 52 (-97.36%)
Mutual labels:  math, expression
Guppy
WYSIWYG mathematics editor with structured, searchable, LaTeX-compatible, and parseable output
Stars: ✭ 147 (-92.53%)
Mutual labels:  math, editor
Funmath
☔️ Implementations of mathematical functions, formulas and concepts
Stars: ✭ 93 (-95.27%)
Mutual labels:  math, formula
Xiangxuema
“想学吗”个人知识管理与自媒体营销工具
Stars: ✭ 1,321 (-32.88%)
Mutual labels:  formula, editor
Equation and Codebox
Microsoft Word VSTO Add-In,可以插入带编号的公式和代码
Stars: ✭ 27 (-98.63%)
Mutual labels:  formula, equation
node calculator
Create Maya node-network by entering a math-formula.
Stars: ✭ 56 (-97.15%)
Mutual labels:  formula, math
rclc
Mathematical expression calculator with big integers, floats, common fractions, and complex numbers support
Stars: ✭ 24 (-98.78%)
Mutual labels:  math, expression
Sharpmath
A small .NET math library.
Stars: ✭ 36 (-98.17%)
Mutual labels:  math, expression
color-math
Expressions to manipulate colors.
Stars: ✭ 18 (-99.09%)
Mutual labels:  math, expression
ToolGood.Algorithm
Support four arithmetic operations, Excel formulas, and support custom parameters. 支持四则运算、Excel公式语法,并支持自定义参数。
Stars: ✭ 77 (-96.09%)
Mutual labels:  formula, expression
Math Engine
Mathematical expression parsing and calculation engine library. 数学表达式解析计算引擎库
Stars: ✭ 123 (-93.75%)
Mutual labels:  math, expression
Markor
Text editor - Notes & ToDo (for Android) - Markdown, todo.txt, plaintext, math, ..
Stars: ✭ 1,394 (-29.17%)
Mutual labels:  math, editor

MathQuill

by Han, Jeanine, and Mary ([email protected]) slackin.mathquill.com

MathQuill is a web formula editor designed to make typing math easy and beautiful.

homepage demo

The MathQuill project is supported by its partners. We hold ourselves to a compassionate Code of Conduct.

MathQuill is resuming active development and we're committed to getting things running smoothly. Find a dusty corner? Let us know in Slack. (Prefer IRC? We're #mathquill on Freenode.)

Getting Started

MathQuill has a simple interface. This brief example creates a MathQuill element and renders, then reads a given input:

var htmlElement = document.getElementById('some_id');
var config = {
  handlers: { edit: function(){ ... } },
  restrictMismatchedBrackets: true
};
var mathField = MQ.MathField(htmlElement, config);

mathField.latex('2^{\\frac{3}{2}}'); // Renders the given LaTeX in the MathQuill field
mathField.latex(); // => '2^{\\frac{3}{2}}'

Check out our Getting Started Guide for setup instructions and basic MathQuill usage.

Docs

Most documentation for MathQuill is located on ReadTheDocs.

Some older documentation still exists on the Wiki.

Open-Source License

The Source Code Form of MathQuill is subject to the terms of the Mozilla Public License, v. 2.0: http://mozilla.org/MPL/2.0/

The quick-and-dirty is you can do whatever if modifications to MathQuill are in public GitHub forks. (Other ways to publicize modifications are also fine, as are private use modifications. See also: MPL 2.0 FAQ)

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].