27 lines
817 B
Markdown
27 lines
817 B
Markdown
# MathJax数学公式
|
|
|
|
- $ 3^2+4^2=5^2 $
|
|
- $ 3^3+4^3+5^3=6^3 $
|
|
- $ 10^2+11^2+12^2=13^2+14^2 $
|
|
- $ 11^3+12^3+13^3+14^3=20^3 $
|
|
- $ 21^2+22^2+23^2+24^2=25^2+26^2+27^2 $
|
|
- $ 36^2+37^2+38^2+39^2+40^2=41^2+42^2+43^2+44^2 $
|
|
- $ 55^2+56^2+57^2+58^2+59^2+60^2=61^2+62^2+63^2+64^2+65^2 $
|
|
|
|
| 名称 | LaTeX语法 | 显示效果 | 用途 |
|
|
| -------- | ---------------- | ------------------ | -------- |
|
|
| 普通字体 | `\mathnormal{N}` | $ \mathnormal{N} $ | |
|
|
| 手写字体 | `\mathcal{N}` | $ \mathcal{N} $ | |
|
|
| 空心粗体 | `\mathbb{N}` | $ \mathbb{N} $ | 表示数集 |
|
|
| | | | |
|
|
| | | | |
|
|
|
|
方程组
|
|
|
|
```math
|
|
\begin{cases}
|
|
1+1=2\\
|
|
2+2=4
|
|
\end{cases}
|
|
```
|