基本要素
# 一级## 二级### 三级#### 四级##### 五级###### 六级
一级
二级
三级
四级
五级
六级
分隔线 三个或更多的-表示分隔线
---
*斜体*
斜体
**粗体**
粗体
***粗斜体***
粗斜体
删除横线
~~删除横线~~
删除横线
无序列表
- 无序列表1- 无序列表2 - 无序列表2a - 无序列表2b
- 无序列表1
- 无序列表2
- 无序列表2a
- 无序列表2b
有序列表
1. 有序列表12. 有序列表23. 有序列表3 1. 有序列表3a 2. 有序列表3b 3. 有序列表3c
- 有序列表1
- 有序列表2
- 有序列表3
- 有序列表3a
- 有序列表3b
- 有序列表3c
文字连接
[百度连接](https://www.baidu.com/)
图片
![我是图片文字](https://www.lastmsg.cn/100.gif)
图片链接
[![我是图片文字](https://www.lastmsg.cn/100.gif)](https://www.lastmsg.cn/)
代码块
我是代码块上下```中间就是代码块
代码块高亮
```php $a = [ 'sss' => 123, 'vvv' => 369 ]; var_dump($a); ```
$a = [ 'sss' => 123, 'vvv' => 369];var_dump($a);
代码块高亮且显示代码行数
```php {.line-numbers} funtion add($x, $y) { return $x+$y; } ```
funtion add($x, $y) { return $x+$y; }
任务列表
- [x] 我是勾选的任务- [ ] 我是没有被勾选的任务
- 我是勾选的任务
- 我是没有被勾选的任务
表格
1|2|3-|-|-a|b|c1|2|3
1 | 2 | 3 |
---|---|---|
a | b | c |
1 | 2 | 3 |
表格扩展(需要开启插件enableExtendedTableSyntax选项)
|1|2|3||-|-|-||>|1|3||2|3|4|
1 | 2 | 3 |
---|---|---|
> | 1 | 3 |
2 | 3 | 4 |
|1|2||-|-||1|b||^|3||4|4|
1 | 2 |
---|---|
1 | b |
^ | 3 |
4 | 4 |
Emoji&Font-awesome
:smile:
😄
:fa-car:
:fa-car:
上标
30^th^
30th
下标
H~2~0H~2~
H20
H2
脚注
什么是脚注[^1][^1]:我就是脚注的内容
什么是脚注1
缩略(鼠标滑动提示)
*[HTML]: 鼠标移动到html上面浮动文字*[W3C]: 鼠标移动到W3C上面浮动文字The HTML specificationis maintained by the W3C.
The HTML specification
is maintained by the W3C.
标记
==marked==
marked
数学公式
运算符-乘号
$\times$$2 \times 3$
× \times ×
2 × 3 2 \times 3 2×3
x的次方
$x^n$
xn x^n xn
下标
$x_n$
xn x_n xn
运算符-除号
$\div$$4 \div 2$
÷ \div ÷
4 ÷ 2 4 \div 2 4÷2
运算符-加减号
$\pm$$4 \pm 2$
± \pm ±
4 ± 2 4 \pm 2 4±2
运算符-开平方
$\sqrt{ x }$
x \sqrt{ x } x
运算符-开n次方
$\sqrt[ n ]{ x }$
xn \sqrt[ n ]{ x } nx
对数符号
$\log$
log \log log
$\lg$
lg \lg lg
$\ln$
ln \ln ln
排列组合
$A_4^3$
A43 A_4^3 A43
$C_4^3$
C43 C_4^3 C43
三角运算符
$30^circ$
3 0∘ 30^\circ 30∘
$\sin30^\circ$
sin 3 0∘ \sin30^\circ sin30∘
$\cos$$\tan$$\cot$$\sec$$\csc$
cos \cos cos
tan \tan tan
cot \cot cot
sec \sec sec
csc \csc csc
数学符号
$\mid$
∣ \mid ∣
$\backslash$
\ \backslash \
$\ast$
∗ \ast ∗
$\leq$
≤ \leq ≤
$\geq$
≥ \geq ≥
$\neq$
≠ \neq =
$\approx$
≈ \approx ≈
$\equiv$
≡ \equiv ≡
$\sum$
∑ \sum ∑
$\prod$
∏ \prod ∏
$\coprod$
∐ \coprod ∐
$\bigodot$
⨀ \bigodot ⨀
$\bigotimes$
⨂ \bigotimes ⨂
$\bigoplus$
⨁ \bigoplus ⨁
$\%$
% \% %
$\approx$
≈ \approx ≈
绝对值
$|\overline{x}|$
∣ x‾ ∣ |\overline{x}| ∣x∣
$|x|$
∣ x ∣ |x| ∣x∣
求和
$\sum_{i=1}^n{x_i}$
∑ i = 1 n xi \sum_{i=1}^n{x_i} ∑i=1nxi
我就是脚注的内容 ↩︎
来源地址:https://blog.csdn.net/qq_19557947/article/details/127128278