latex数学公式笔记

latex在线公式编辑:http://www.codecogs.com/latex/eqneditor.php

1、空格

两个quad空格 a qquad b $a qquad b$ 两个m的宽度
quad空格 a quad b $a quad b$ 一个m的宽度
大空格 a b $a b$ 1/3m宽度
中等空格 a;b $a;b$ 2/7m宽度
小空格 a\,b $a\,b$ 1/6m宽度
没有空格 ab $ab$  
紧贴 a!b $a!b$ 缩进1/6m宽度

2、数学公式中写入非数学变量的字符(non-mathematical elements),使用Roman字体,而不是数学变量的斜体,例如$if$, 可使用mbox{ if },效果:$mbox{ if }$

3、公式的下标放在正下方mathop{argmax}limits_{k}。效果:$mathop{argmax}limits_{k}$

4、latex居中:

egin{align*}
f(x)
end{align*}

4、latex加粗,可以用 extbf{b},效果:$ extbf{b}$

5、更多字体设置:http://blog.sina.com.cn/s/blog_5caa94a0010106ut.html

6、字母花写:mathcal{V},效果:$mathcal{V}$

7、梯度符号: abla,效果:$ abla$

原文地址:https://www.cnblogs.com/royhoo/p/latex.html