2019-9-12 刘朋 using markdown
文章目录
Typora markdown
what is markdown?
markdown is a language for software engineer to write and communicate. it is easily use it by code character . it also support pdf,word format translate. For example ,you can use “## title”,like this
title.
In this paper,I will introduce some knowledge about how to use it in your life.
what is Typora?
It is a IDE for using markdown easily. you can use ctrl+/ to change display module .if you like using code to mark,if you don’t familiar it . I suggest you using keyboard .
how to use title :ctrl +1–6
markdown has six title level .you can use # to ####### mark title level . some IDE have keyboard to use it .In typora,you can use ctrl +1–6 to mark. Resulting the following :
title
title
title
title
title
title
how to use ordered list :ctrl+shift+ [
-
[]
-
hello
how to use unordered list :ctrl+shift+ ]
how to task list : no keyboard ,you can switch in menu
- have lunch
- [ ]
how to use math form :ctrl+shift+ M
E
=
M
C
2
E =MC^2
E=MC2
how to use form :ctrl+T
In markdown ,you can use a shape replace form ,the result is same one .in Typora ,you can use GUI easily .
名称 | 单价 | 数量 | 小计 |
---|---|---|---|
总计 |
how to use code block :ctrl+shift+k
#include<iostream>
using namespace std ;
int main()
{
cout<<"hello!"<<endl;
return 0;
}