Typora的使用
1.如何编写标题(共六级)
方式一:
几个#号就是几级标题
方式二:
ctrl+数字
2.如何编写子标题
第一种:无序子标题(无序列表)
*空格写内容
第二种:有序子标题(有序列表)
数字加点写内容
3.代码环境
```写上你需要的环境
4.表格
使用管道符(|)分割多个文本 # eg:|username|age|body|
5.超链接
文本超链接:[]()
图片超链接:![]()
6.单选框
-[x] 内容
7.数字公式、流程图
1.横向流程图:
graph LR
A[方形] -->B(圆角)
B --> C{条件a}
C -->|a=1| D[结果1]
C -->|a=2| E[结果2]
F[横向流程图]
2.竖向流程图:
graph TD
A[方形] -->B(圆角)
B --> C{条件a}
C -->|a=1| D[结果1]
C -->|a=2| E[结果2]
F[竖向流程图]
3.标准流程图:
st=>start: 开始框
op=>operation: 处理框
cond=>condition: 判断框(是或否?)
sub1=>subroutine: 子流程
io=>inputoutput: 输入输出框
e=>end: 结束框
st->op->cond
cond(yes)->io->e
cond(no)->sub1(right)->op
4.标准流程图(横向)
st=>start: 开始框
op=>operation: 处理框
cond=>condition: 判断框(是或否?)
sub1=>subroutine: 子流程
io=>inputoutput: 输入输出框
e=>end: 结束框
st(right)->op(right)->cond
cond(yes)->io(bottom)->e
cond(no)->sub1(right)->op