标签:item display http pycha 基础 符号 插入 年龄 多个
目录
# 一级标题
## 二级标题
### 三级标题
*斜体*
**加粗**
==高亮==
x^y^
效果: x^y^
C~H~4
hello world!
> hello world!
例子:
print("hello world!")
https://www.cnblogs.com/setcreed/
[我的博客园](https://www.cnblogs.com/setcreed/)
有序列表:
1. one
2. two
3. three
无序列表:
- one
- two
- three
~~我被删除了~~
我被删除了
ctrl+/ 进入源码模式
姓名| 年龄| 身高
:-:|:-|-:
A|20|180
B|21|178
姓名 | 年龄 | 身高 |
---|---|---|
A | 20 | 180 |
B | 21 | 178 |
想要运用 Markdown 数学公式,必须在代码首尾加上这样一个符号$
,对其进行特殊标注。行内公式用$代码$
上标采用$^上标内容$
,下标采用$_下标内容$
多个字符上标或下标用{}包裹作为一个单位
$\sum^{x \to \infty}_{y \to 0}{\frac{x}{y}}$
\(\sum^{x \to \infty}_{y \to 0}{\frac{x}{y}}\)
$\frac{1}{2}$
\(\frac{1}{2}\)
$\sum^{10}_{i=1}f(i)\,{thanks}$
\(\sum^{10}_{i=1}f(i)\,{thanks}\)
$$
\sum^{10}_{i=1}f(i)\,{thanks}
$$
\[ \sum_{i=1}^{10}f(i)\,{thanks} \]
基础markdown语法参考:https://www.appinn.com/markdown/
插入数学公式markdown语法参考:https://www.zybuluo.com/codeep/note/163962
标签:item display http pycha 基础 符号 插入 年龄 多个
原文地址:https://www.cnblogs.com/setcreed/p/11390492.html