抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

1、表情符号

https://www.webfx.com/tools/emoji-cheat-sheet/

:100: :two::three::four::five::six::seven:

:heavy_check_mark::heavy_multiplication_x:

:ballot_box_with_check:

H^2^

2、脚注

驿外[^注1]断桥边,寂寞开无主。==已是黄昏独==自愁,更着风和雨
[^注1]:驿(yì)外:指荒僻、冷清之地。驿,驿站。

3、列表

  • Apple

  • Banana

  • 1

  • 2

  • 3

    1. a

    2. b

    3. c

1
2
3
4
5
sudio -i
a
b
#cc

4、公式

$$
\sqrt{3x-1}+(1+x)^2={x*100}
$$

$$
\begin{array}{c}

\nabla \times \vec{\mathbf{B}} -, \frac1c, \frac{\partial\vec{\mathbf{E}}}{\partial t} &
= \frac{4\pi}{c}\vec{\mathbf{j}} \nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \

\nabla \times \vec{\mathbf{E}}, +, \frac1c, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \

\nabla \cdot \vec{\mathbf{B}} & = 0

\end{array}
$$

5、图表

使用说明

5.1、流程图

有关更多详细信息,请参见这些说明

1
2
3
4
5
6
7
8
9
10
graph TD;
A[开始];
B(工作经验);
C(经济实力);
D(语言能力);
E[成功];
A-->|111|B;
A-->|222|C;
A-->|333|D;
B-->|1111|E;C-->|2222|E;D-->|3333|E;
1
2
3
4
5
6
graph LR
A[开始] -->B(Round edge)
B --> C{Decision}
C -->|One| D[Result one]
C -->|Two| E[Result two]
C -->|打回| A
1
2
3
4
5
6
7
8
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
e=>end

st->op->cond
cond(yes)->e
cond(no)->op

5.2、顺序图

有关更多详细信息,请参见这些说明

1
2
3
4
5
6
7
8
9
10
11
12
sequenceDiagram

participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!

5.3、Gantt Charts

有关更多详细信息,请参见这些说明

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%% Example with selection of syntaxes
gantt
dateFormat YYYY-MM-DD
title Adding GANTT diagram functionality to mermaid

section A section
Completed task :done, des1, 2014-01-06,2014-01-08
Active task :active, des2, 2014-01-09, 3d
Future task : des3, after des2, 5d
Future task2 : des4, after des3, 5d

section Critical tasks
Completed task in the critical line :crit, done, 2014-01-06,24h
Implement parser and jison :crit, done, after des1, 2d
Create tests for parser :crit, active, 3d
Future task in critical line :crit, 5d
Create tests for renderer :2d
Add to mermaid :1d

section Documentation
Describe gantt syntax :active, a1, after des1, 3d
Add gantt diagram to demo page :after a1 , 20h
Add another diagram to demo page :doc1, after a1 , 48h

section Last section
Describe gantt syntax :after doc1, 3d
Add gantt diagram to demo page : 20h
Add another diagram to demo page : 48h

5.4、类图

有关更多详细信息,请参见这些说明

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
classDiagram
Animal <|-- Duck
Animal <|-- Fish
Animal <|-- Zebra
Animal : +int age
Animal : +String gender
Animal: +isMammal()
Animal: +mate()
class Duck{
+String beakColor
+swim()
+quack()
}
class Fish{
-int sizeInFeet
-canEat()
}
class Zebra{
+bool is_wild
+run()
}

5.5、状态图

有关更多详细信息,请参见这些说明

1
2
3
4
5
6
7
8
stateDiagram
[*] --> Still
Still --> [*]

Still --> Moving
Moving --> Still
Moving --> Crash
Crash --> [*]

5.6、饼图

1
2
3
4
5
pie
title Pie Chart
"Dogs" : 386
"Cats" : 85
"Rats" : 150
1
2
3
4
5
6
7
8
9
journey
title My working day
section Go to work
Make tea: 5: Me
Go upstairs: 3: Me
Do work: 1: Me, Cat
section Go home
Go downstairs: 5: Me
Sit down: 3: Me

视频2