Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

1--- 2title: 'KaTeX Examples' 3pubDate: '2025-05-19' 4--- 5 6This theme includes built-in KaTeX support for rendering mathematical expressions in your content. 7 8--- 9 10## Examples 11 12- Inline math: $E = mc^2$ 13- Block math: 14 15$$ 16\begin{equation} 17\sum_{i=1}^{k+1} i = \left(\sum_{i=1}^{k} i\right) + (k+1) 18\end{equation} 19$$ 20 21$$ 22\begin{equation} 23= \frac{k(k+1)}{2} + k + 1 24\end{equation} 25$$ 26 27$$ 28\begin{equation} 29= \frac{k(k+1) + 2(k+1)}{2} 30\end{equation} 31$$ 32 33$$ 34\begin{equation} 35= \frac{(k+1)(k+2)}{2} 36\end{equation} 37$$ 38 39$$ 40\begin{equation} 41= \frac{(k+1)((k+1)+1)}{2} 42\end{equation} 43$$ 44 45--- 46 47## Ref 48 49- [KaTeX Documentation](https://katex.org/docs/supported.html)