Writing

Math Equations

Insert and render LaTeX math equations inline or as full-width blocks.

FAQ ↓

Jenni renders LaTeX math using KaTeX, supporting both inline equations that sit within a line of text and block equations that occupy their own centered line.

Equation popover dialog titled Add a TeX equation with a LaTeX input field showing Maxwell's equations in aligned environment, Esc/Close and Done buttons
Fig 1The equation popover: type LaTeX in the input field and click Done to insert the rendered equation.

Inline Equations

Inline equations appear within the flow of a sentence. There are two ways to insert one:

The editor renders the equation immediately after you close the delimiters.

Block Equations

Block equations render as centered, full-width expressions on their own line. To insert one:

Block equations are suited for standalone formulas, derivations, and any expression that benefits from visual prominence.

Editing Equations

Click any rendered equation to open the popover editor. The popover contains:

Popover Keyboard Shortcuts

ShortcutAction
EscapeCancel editing and close the popover
Ctrl/Cmd + EnterSave the equation and close the popover
Done buttonSave the equation and close the popover

LaTeX Syntax Quick Reference

ExpressionLaTeXRenders As
Fraction\frac{a}{b}a/b
Square root\sqrt{x}square root of x
Superscriptx^{2}x squared
Subscriptx_{i}x sub i
Summation\sum_{i=1}^{n} x_isummation from i=1 to n
Integral\int_{a}^{b} f(x) dxdefinite integral from a to b
Greek letters\alpha, \beta, \gamma, \theta, \pirespective Greek symbols
Matrix\begin{pmatrix} a & b \\ c & d \end{pmatrix}2x2 matrix

The editor supports the full KaTeX function library. For a complete list of supported functions, symbols, and environments, see the KaTeX documentation.

Copying Equations

Hover over any rendered equation to reveal a copy button. Clicking it copies the LaTeX source to your clipboard, ready to paste elsewhere.

Export Behavior

Other export formats (PDF, DOCX) render equations as formatted output.

Troubleshooting

Equation shows raw LaTeX text instead of rendering Confirm that the delimiters are correct: $$...$$ for inline, $$$...$$$ for block. A missing closing delimiter prevents rendering. Also check for unsupported LaTeX commands. KaTeX covers most standard math but does not support every package.

Equation does not convert when typing delimiters Make sure there are no spaces between the dollar signs and the formula. $$ E=mc^2 $$ with leading/trailing spaces inside the delimiters may not trigger the parser. Write $$E=mc^2$$ instead.

Equation renders incorrectly Check your LaTeX syntax. Common issues include mismatched braces, missing backslashes on commands, and incorrect environment names. Use the popover editor’s live preview to debug; it highlights syntax errors as you type.

Frequently Asked Questions

How do I write math equations in Jenni?
For inline equations, type $$ followed by your LaTeX and close with $$. For block equations, use $$$ as the delimiter. You can also use the toolbar icons to insert either type.
Does Jenni support LaTeX?
Yes. Jenni renders LaTeX math using KaTeX, which supports fractions, roots, summations, integrals, Greek letters, matrices, and most standard math functions and environments.
Why is my equation showing raw text instead of rendering?
Check that your delimiters are correct: $$ for inline and $$$ for block equations. Make sure there are no spaces between the dollar signs and the formula, and verify that all LaTeX commands are supported by KaTeX.
How do I edit an equation in Jenni?
Click any rendered equation to open the popover editor. It has a LaTeX input field with live preview so you can see changes as you type. Press Ctrl/Cmd + Enter or click Done to save.
Can I copy LaTeX from a Jenni equation?
Yes. Hover over any rendered equation to reveal a copy button. Clicking it copies the LaTeX source code to your clipboard.
Do equations export properly from Jenni?
Yes. LaTeX exports preserve equations as raw LaTeX in the .tex file. PDF and DOCX exports render equations as formatted output. Word imports also convert equations to LaTeX automatically.
What LaTeX commands does Jenni support?
Jenni uses KaTeX, which covers most standard math including fractions, roots, superscripts, subscripts, summations, integrals, Greek letters, and matrices. See the KaTeX documentation for the full list of supported functions.