Markdown math formula editor
Write a maths formula the easy way. Type in the live equation field, or click a construct, and the tool builds clean LaTeX you can drop straight into your document.
LaTeX math basics
The formula is stored as LaTeX, the standard way to write maths as text. You never have to remember it: type in the equation field above and it writes the LaTeX for you. This section shows what the common pieces look like so you can read and tweak them by hand.
Fractions and roots
A fraction is \frac{top}{bottom}. A square root is \sqrt{x}, and \sqrt[n]{x} gives an nth root.
\frac{a + b}{2} = \sqrt{c}
Powers and subscripts
A superscript is ^ and a subscript is _. Wrap more than one character in braces, like x^{2n}.
E = mc^2 \quad a_{n+1} = a_n + d
Sums and integrals
Big operators take their range with _ for the lower bound and ^ for the upper one.
\sum_{i=1}^{n} i = \frac{n(n+1)}{2}
Greek letters and matrices
Greek letters are named commands like \alpha and \pi. A matrix goes inside \begin{pmatrix} ... \end{pmatrix}, with & between columns and \\ between rows.
\theta = \begin{pmatrix} \cos\alpha & -\sin\alpha \\ \sin\alpha & \cos\alpha \end{pmatrix}
Cheat sheet
| Write this | You get |
|---|---|
\frac{a}{b} | A fraction |
\sqrt{x} | A square root |
\sqrt[n]{x} | An nth root |
x^{2} | A superscript (power) |
x_{i} | A subscript |
\sum_{i=1}^{n} | A sum with bounds |
\int_{a}^{b} | An integral with limits |
\alpha \beta \pi \theta | Greek letters |
\pm \times \cdot | Plus-or-minus, times, dot |
This editor
Type directly in the equation field to build the formula visually. The tools insert whole constructs at the caret, and the Properties panel holds the raw LaTeX and a display or inline mode toggle. The Source tab shows the LaTeX on its own, so you can paste a formula in or copy one out. Copy or download gives you a Markdown block fenced as math.