markdown

LaTex常用特殊符号对应表

https://blog.csdn.net/caiandyong/article/details/53351737

单md文件显示数学公式

markdown文档里任意位置加入引用

1
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>

语法

列表

  • 无序列表
1
2
3
*   Red
* Green
* Blue
  • 有序列表
1
2
3
1.  Bird
2. McHale
3. Parish

分隔线

1
2
3
***
---
___

链接

  • 行内式
1
2
3
This is [an example](http://example.com/ "Title") inline link.

[This link](http://example.net/) has no title attribute.
  • 参考式
1
2
3
This is [an example] [id] reference-style link.

[id]: http://example.com/ "Optional Title Here"

图片

  • 行内式
1
2
3
![Alt text](/path/to/img.jpg)

![Alt text](/path/to/img.jpg "Optional title")
  • 参考式
1
2
![Alt text][id]
[id]: url/to/image "Optional title attribute"

表格

  • 表格前一定要空一行
  • 左冒号表示左对齐,右冒号表示右对齐,左右都有冒号表示居中对齐
1
2
3
4
| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |

脚注

1
2
3
hello[^1]

[1]: 123