Math

Render mathematical equations using KaTeX

The Math component renders mathematical equations using KaTeX, supporting both inline and block math.

Usage

Inline Math

Code
mdx
1The equation <Math>{"E = mc^2"}</Math> is famous.

Block Math

Code
mdx
1<Math block>
2 {"\\int_{-\\infty}^{\\infty} e^{-x^2} dx = \\sqrt{\\pi}"}
3</Math>

Live Examples

Inline Math

Einstein's famous equationrelates energy and mass.

The quadratic formula is.

Block Math

Matrix

Summation

Props

PropTypeDefaultDescription
childrenstringrequiredLaTeX math expression
blockbooleanfalseDisplay as block (centered)

LaTeX Syntax

Tip
Remember to escape backslashes in JSX. Use `\\` instead of `\` for LaTeX commands.

Common Symbols

SymbolLaTeXResult
Greek letters\alpha, \beta, \gamma
Fractions\frac{a}{b}
Square root\sqrt{x}
Exponentsx^{n}
Subscriptsx_{i}
Infinity\infty
Sum\sum
Integral\int

Resources