LATEX公式语法
see how any formula was written in any question or answer, including this one, right-click on the expression it and choose "Show Math As > TeX Commands". (When you do this, the '$' will not display. Make sure you add these. See the next point.)
For inline formulas, enclose the formula in
$...$
. For displayed formulas, use$$...$$
.
These render differently. For example, type
$\sum_{i=0}^n i^2 = \frac{(n^2+n)(2n+1)}{6}$
to show ∑ n i=0 i 2 =(n 2 +n)(2n+1)6 ∑i=0ni2=(n2+n)(2n+1)6 (which
is inline mode) or type
$$\sum_{i=0}^n i^2 = \frac{(n^2+n)(2n+1)}{6}$$
to show∑ i=0 n i 2 =(n 2 +n)(2n+1)6 ∑i=0ni2=(n2+n)(2n+1)6(which is display mode).
For Greek letters, use
\alpha
,\beta
, …,\omega
: α,β,…ω α,β,…ω.
For uppercase, use\Gamma
,\Delta
, …,\Omega
: Γ,Δ,…,Ω Γ,Δ,…,Ω.For superscripts and subscripts, use
^
and_
. For example,x_i^2
: x 2 i xi2,\log_2
: log 2 x log2x.
xGroups. Superscripts, subscripts, and other operations apply only to the next “group”. A “group” is either a single symbol, or any formula surrounded by curly braces
{
…}
. If you do10^10
, you will get
a surprise: 10 1 0 1010.
But10^{10}
gives what you probably wanted: 10 10 1010.
Use curly braces to delimit a formula to which a superscript or subscript applies:x^5^6
is an error;{x^y}^z
is x y z xyz,
andx^{y^z}
is x y z xyz.
Observe the difference betweenx_i^2
x 2 i xi2 andx_{i^2}
x i 2 xi2.Parentheses Ordinary symbols
()[]
make parentheses and brackets (2+3)[4+4] (2+3)[4+4].
Use\{
and\}
for curly braces {} {}.These do not scale with the formula in between, so if you write
(\frac{\sqrt x}{y^3})
the parentheses will be too small: (x √ y 3 ) (xy3).
Using\left(
…\right)
will make the sizes adjust automatically to the formula they enclose:\left(\frac{\sqrt x}{y^3}\right)
is (x √ y 3 ) (xy3).\left
and\right
apply to all the following sorts of parentheses:(
and)
(x) (x),[
and]
[x] [x],\{
and\}
{x} {x},|
|x| |x|,\langle
and\rangle
⟨x⟩ ⟨x⟩,\lceil
and\rceil
⌈x⌉ ⌈x⌉,
and\lfloor
and\rfloor
⌊x⌋ ⌊x⌋.
There are also invisible parentheses, denoted by.
:\left.\frac12\right\rbrace
is 12 } 12}.Sums and integrals
\sum
and\int
; the subscript is the lower limit and the superscript is the upper limit, so for example\sum_1^n
∑ n 1 ∑1n.
Don't forget{
…}
if the limits are more than a single symbol. For example,\sum_{i=0}^\infty i^2
is ∑ ∞ i=0 i 2 ∑i=0∞i2.
Similarly,\prod
∏ ∏,\int
∫ ∫,\bigcup
⋃ ⋃,\bigcap
⋂ ⋂,\iint
∬ ∬.Fractions There are two ways to make these.
\frac ab
applies to the next two groups, and produces ab ab;
for more complicated numerators and denominators use{
…}
:\frac{a+1}{b+1}
is a+1b+1 a+1b+1.
If the numerator and denominator are complicated, you may prefer\over
, which splits up the group that it is in:{a+1\over b+1}
is a+1b+1 a+1b+1.Fonts
- Use
\mathbb
or\Bbb
for "blackboard bold": CHNQRZ CHNQRZ. - Use
\mathbf
for boldface: ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz. - Use
\mathtt
for "typewriter" font: ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz. - Use
\mathrm
for roman font: ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz. - Use
\mathsf
for sans-serif font: ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz. - Use
\mathcal
for "calligraphic" letters: ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZ - Use
\mathscr
for script letters: ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZ - Use
\mathfrak
for "Fraktur" (old German style) letters: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.
- Use
Radical signs Use
sqrt
, which adjusts to the size of its argument:\sqrt{x^3}
x 3 − − √ x3;\sqrt[3]{\frac
xy √ 3 xy3.
xy}
For complicated expressions, consider using{...}^{1/2}
instead.Some special functions such as "lim", "sin", "max", "ln", and so on are normally set in roman font instead of italic font. Use
\lim
,\sin
, etc. to make these:\sin x
sinx sinx,
notsin x
sinx sinx.
Use subscripts to attach a notation to\lim
:\lim_{x\to 0}
lim x→0 limx→0There are a very large number of special symbols and notations, too many to list here; see this shorter listing, or this
exhaustive listing. Some of the most common include:\lt \gt \le \ge \neq
<>≤≥≠ <>≤≥≠.
You can use\not
to put a slash through almost anything:\not\lt
≮ ≮ but
it often looks bad.\times \div \pm \mp
×÷±∓ ×÷±∓.\cdot
is
a centered dot: x⋅y x⋅y\cup \cap \setminus \subset \subseteq \subsetneq \supset \in \notin \emptyset \varnothing
∪∩∖⊂⊆⊊⊃∈∉∅∅ ∪∩∖⊂⊆⊊⊃∈∉∅∅{n+1 \choose 2k}
or\binom{n+1}{2k}
(n+12k) (n+12k)\to \rightarrow \leftarrow \Rightarrow \Leftarrow \mapsto
→→←⇒⇐↦ →→←⇒⇐↦\land \lor \lnot \forall \exists \top \bot \vdash \vDash
∧∨¬∀∃⊤⊥⊢⊨ ∧∨¬∀∃⊤⊥⊢⊨\star \ast \oplus \circ \bullet
⋆∗⊕∘∙ ⋆∗⊕∘∙\approx \sim \simeq \cong \equiv \prec
≈∼≃≅≡≺ ≈∼≃≅≡≺.\infty \aleph_0
∞ℵ 0 ∞ℵ0\nabla
∇∂ ∇∂
\partial\Im
IR ℑℜ
\Re- For modular equivalence, use
\pmod
like this:a\equiv b\pmod n
a≡b(modn) a≡b(modn). \ldots
is the dots in a 1 ,a 2 ,…,a n a1,a2,…,an\cdots
is
the dots in a 1 +a 2 +⋯+a n a1+a2+⋯+an- Some Greek letters have variant forms:
\epsilon \varepsilon
ϵε ϵε,\phi
ϕφ ϕφ,
\varphi
and others. Script lowercase l is\ell
ℓ ℓ.
Detexify lets you draw a symbol on a web page and then lists the TE X TEX symbols
that seem to resemble it. These are not guaranteed to work in MathJax but are a good place to start. To check that a command is supported, note that MathJax.org maintains a list
of currently supported LA TE X LATEX commands,
and one can also check Dr. Carol JVF Burns's page of TE X TEX Commands
Available in MathJax.Spaces MathJax usually decides for itself how to space formulas, using a complex set of rules. Putting extra literal spaces into formulas will not change the amount of space MathJax puts in:
a␣b
anda␣␣␣␣b
are both ab ab.
To add more space, use\,
for a thin space ab ab;\;
for
a wider space ab ab.\quad
and\qquad
are
large spaces: ab ab, ab ab.To set plain text, use
\text{…}
: {x∈s∣x is
extra large} {x∈s∣x is
extra large}. You can nest$…$
inside of\text{…}
.Accents and diacritical marks Use
\hat
for a single symbol x ^ x^,\widehat
for
a larger formula xy ˆ xy^.
If you make it too wide, it will look silly. Similarly, there are\bar
x ¯ x¯ and\overline
xyz ¯ ¯ ¯ ¯ ¯ ¯ ¯ ¯ xyz¯,
and\vec
x ⃗ x→ and\overrightarrow
xy − → xy→ and\overleftrightarrow
xy ← → xy.
For dots, as in ddx xx ˙ =x ˙ 2 +xx ¨ ddxxx˙=x˙2+xx¨,
use\dot
and\ddot
.Special characters used for MathJax interpreting can be escaped using the
\
character:\$
$ $,\{
{ {,\_
_ _,
etc. If you want\
itself, you should use\backslash
∖ ∖,
because\\
is for a new line.
(Tutorial ends here.)
LATEX公式语法的更多相关文章
- LaTex公式语法教程及手册(附emlogpro公式显示插件katex说明)
目录 第一列 第二列 第三列 效果 求和(使用\sum标签) 文本效果 本插件简介 积分(使用\int标签) 文本大小 LaTex是什么 空格 特殊符号 LaTex公式使用教程及手册 定界符 LaTe ...
- latex基本语法
一直想着学会latex,但是自学起来太麻烦,总是出现各种不理解的错误,也没那么多时间钻研,就学了忘,忘了再学,这里就先摘录下它的基本命令吧.学好了是一件利器!(虽然不常用,但要尽量学会) LaTex基 ...
- LaTeX公式
在学习机器学习中会接触到大量的数学公式,所以在写博客是会非常的麻烦.用公式编辑器一个一个写会非常的麻烦,这时候我们可以使用LaTeX来插入公式. 写这篇博文的目的在于,大家如果要编辑一些简单的公式,就 ...
- markdown 插入latex公式练习
markdown 插入latex公式 $$公式$$表示行间公式,本来Tex中使用\(公式\)表示行内公式,但因为Markdown中\是转义字符,所以在Markdown中输入行内公式使用\\(公式\\) ...
- Mathjax与LaTex公式简介
MathJax与LaTex公式简介 (转载) PS: 原文链接写的非常好!!! 博主写这篇文章,一是为了防止原链接失效,二是在cnblogs上测试MathJax; 本文从math.stackexcha ...
- Latex 公式速查
本文记录了一些常用的数学公式对应的 Latex 字符,用于快速查找需要的字符 所有的在 Latex 使用的字符公式,都需要放在\(和\),$ 和 $,\begin{math} 和\end{math}之 ...
- 为WLW开发Latex公式插件
WLW是写博客的利器,支持离线.格式排版等,而且拥有众多的插件.博客园推荐了代码插入插件,但是没有提供WLW的公式编译插件.目前我的一般做法是:先在Word下使用MathType编辑好公式,然后将公式 ...
- 在word 2013中输入latex公式
注意:版权所有,转载请注明出处 向word输入LaTeX公式,插件有很多,前面在使用的是一个叫做Aurora的插件,结果不是免费的,用了一段时间就要收费是,所以就不用了,从网上找到别人的介绍,可以使用 ...
- Latex 公式在线可视化编辑器
寻觅 最近的一个demo需要用到Latex公式在线编辑器,从搜索引擎一般会得到类似http://latex.codecogs.com/eqneditor/editor.php的结果,这个编辑器的问题在 ...
随机推荐
- Spring Security:如何在Postman中优雅地测试后端API(前后端分离)
前言 在Postman中可以编写和执行自动化测试,使用 JavaScript 编写基本的 API 测试,自由编写任何用于自动化测试的测试方案. 在POSTMAN中读取Cookie值 1. 我们需要向& ...
- 并发编程从零开始(十四)-Executors工具类
并发编程从零开始(十四)-Executors工具类 12 Executors工具类 concurrent包提供了Executors工具类,利用它可以创建各种不同类型的线程池 12.1 四种对比 单线程 ...
- linux 启动过程以及如何将进程加入开机自启
linux 启动流程 系统启动主要顺序就是: 1. 加载内核 2. 启动初始化进程 3. 确定运行级别 4. 加载开机启动程序 5. 用户登录 启动流程的具体细节可以看看Linux 的启动流程 第4步 ...
- js-arguments 函数参数对象详解
前言 JavaScript 函数参数不同于其他编程语言,既不需要规定参数的类型,也不需要关心参数的个数,因此 JavaScript 因函数参数而变得十分灵活,本文总结一下 arguments 参数对象 ...
- 分布式事务(四)之TCC
在电商领域等互联网场景下,传统的事务在数据库性能和处理能力上都暴露出了瓶颈.在分布式领域基于CAP理论以及BASE理论,有人就提出了柔性事务的概念.在业内,关于柔性事务,最主要的有以下四种类型:两阶段 ...
- jenkins 生成HTML报表,邮件推送
1.登录jenkins,系统管理=>插件管理 =>可选插件安装 安装成功: 2.打开任务,进入配置 3.添加构建后操作 4.配置页面 5.构建后report输出配置完成后点击立即构建,构建 ...
- mysql8版本以上重置密码
1.打开命令窗口cmd,输入命令:net stop mysql,停止MySQL服务, 2.开启跳过密码验证登录的MySQL服务, 输入命令 : mysqld --console --skip-gran ...
- 学习JS的第四天
一.循环 1.循环嵌套 1.一个循环内包含完整的另一个循环语句. 2.被包含的循环语句叫内循环,包含别的循环的循环语句叫外循环. 3.外循环每执行一次循环,内循环都会完全执行所有循环次数. 4.循环嵌 ...
- Linux Mem (目录)
1.用户态相关: 1.1.用户态进程空间的创建 - execve() 详解 1.2.用户态进程空间的映射 - mmap()详解 1.3.分页寻址(Paging/MMU)机制详解 2.内核态相关: 2. ...
- 🏆【Alibaba中间件技术系列】「RocketMQ技术专题」帮你梳理RocketMQ或Kafka的选择理由以及二者PK
前提背景 大家都知道,市面上有许多开源的MQ,例如,RocketMQ.Kafka.RabbitMQ等等,现在Pulsar也开始发光,今天我们谈谈笔者最常用的RocketMQ和Kafka,想必大家早就知 ...