Add LaTeX to Starlight
1 min read
This guide shows you how to use LaTeX in Starlight.
Step-by-step Guide
Section titled Step-by-step Guide-
Start by installing the
remark-math
↗ andrehype-katex
↗ package using your favorite package manager:Terminal window npm add katex rehype-katex remark-mathTerminal window pnpm add katex rehype-katex remark-mathTerminal window yarn add katex rehype-katex remark-mathTerminal window bun add katex rehype-katex remark-math -
Add
katex
,rehype-katex
, andremark-math
inastro.config.mjs
:astro.config.mjs // ...import remarkMath from "remark-math";import rehypeKatex from "rehype-katex";export default defineConfig({// ...markdown: {remarkPlugins: [remarkMath],rehypePlugins: [rehypeKatex],},integrations: [starlight({// ...customCss: ["katex/dist/katex.min.css"],}),],})
Example
Section titled ExampleWhen $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$
The code above generates the following on the page:
When , there are two solutions to and they are