latex在数学建模的时候用到了,开始的时候感觉很烦。但是在后面就感到很好用了。不由得惊叹起latex的设计者的惊人才智来。和latex相比,markdown就显得简单多了。下面就以个人的经验写一下如何快速入门。
定义标题##
# 一级标题
## 二级标题
### 三级标题
引用##
引用需要注意文本的格式。只需要在前面加上>即可。
像这样>
链接与图片##
链接为: []() 图片为: ![]()
区别在于需要在前面加一个!小括号里面为对应的网址。像这样申炳宇。
[申炳宇](http://shenbingyu.com)
插入表格##
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
表格的格式与latex差不多。
`
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
`
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
效果就是
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
我去表格也不支持。。。
插入代码##
插入代码很简单的,只需要两个'把中间的代码包起来~
int main(){ cout<<"helllo world"<<endl; return 0; }
插入latex代码##
latex最方便的莫过于输入公式了。
测试
This expression $\sqrt{3x-1}+(1+x)^2$ is an example of a $\LaTeX$ inline equation.
he Lorenz Equations:
$$
\begin{aligned}
\dot{x} & = \sigma(y-x) \\
\dot{y} & = \rho x - y - xz \\
\dot{z} & = -\beta z + xy
\end{aligned}
$$
简书不支持段内换行,可能是开发者考虑到大多数用户可能不易>理解这种LATEX风格的语法吧,这其实也无所谓的,但是缺乏自动缩进,也不能用tab键,这就真的让人捉急>了。其他高级功能比如LATEX公式,显示行号的源代码区块,脚注等都不支持。不过简书还提供了博客和社交的功能,已经不止是一个在线编辑器了。
真是醉了。
简书还是给文科生用的多一些吧~
大概就是这些了。。