1. 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.)

  2. 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).

  3. For Greek letters, use \alpha\beta, …, \omega: α,β,…ω α,β,…ω.
    For uppercase, use \Gamma\Delta, …, \Omega: Γ,Δ,…,Ω Γ,Δ,…,Ω.

  4. For superscripts and subscripts, use ^ and _. For example, x_i^2: x 2 i  xi2, \log_2
    x
    : log 2 x log2⁡x.

  5. Groups. 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 do 10^10, you will get
    a surprise: 10 1 0 1010.
    But 10^{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,
    and x^{y^z} is x y z   xyz.
    Observe the difference between x_i^2 x 2 i  xi2 and x_{i^2} x i 2   xi2.

  6. 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}.

  7. 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 ∬ ∬.

  8. 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.

  9. 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.
  10. Radical signs Use sqrt, which adjusts to the size of its argument: \sqrt{x^3} x 3  − −  √  x3; \sqrt[3]{\frac
    xy}
     xy   √ 3  xy3.
    For complicated expressions, consider using{...}^{1/2} instead.

  11. 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 sin⁡x,
    not sin x sinx sinx.
    Use subscripts to attach a notation to \lim\lim_{x\to 0}

    lim x→0  limx→0
  12. There 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
      \Re
       IR ℑℜ
    • 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
    .

  13. 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 and a␣␣␣␣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{…}.

  14. 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.

  15. 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公式语法的更多相关文章

  1. LaTex公式语法教程及手册(附emlogpro公式显示插件katex说明)

    目录 第一列 第二列 第三列 效果 求和(使用\sum标签) 文本效果 本插件简介 积分(使用\int标签) 文本大小 LaTex是什么 空格 特殊符号 LaTex公式使用教程及手册 定界符 LaTe ...

  2. latex基本语法

    一直想着学会latex,但是自学起来太麻烦,总是出现各种不理解的错误,也没那么多时间钻研,就学了忘,忘了再学,这里就先摘录下它的基本命令吧.学好了是一件利器!(虽然不常用,但要尽量学会) LaTex基 ...

  3. LaTeX公式

    在学习机器学习中会接触到大量的数学公式,所以在写博客是会非常的麻烦.用公式编辑器一个一个写会非常的麻烦,这时候我们可以使用LaTeX来插入公式. 写这篇博文的目的在于,大家如果要编辑一些简单的公式,就 ...

  4. markdown 插入latex公式练习

    markdown 插入latex公式 $$公式$$表示行间公式,本来Tex中使用\(公式\)表示行内公式,但因为Markdown中\是转义字符,所以在Markdown中输入行内公式使用\\(公式\\) ...

  5. Mathjax与LaTex公式简介

    MathJax与LaTex公式简介 (转载) PS: 原文链接写的非常好!!! 博主写这篇文章,一是为了防止原链接失效,二是在cnblogs上测试MathJax; 本文从math.stackexcha ...

  6. Latex 公式速查

    本文记录了一些常用的数学公式对应的 Latex 字符,用于快速查找需要的字符 所有的在 Latex 使用的字符公式,都需要放在\(和\),$ 和 $,\begin{math} 和\end{math}之 ...

  7. 为WLW开发Latex公式插件

    WLW是写博客的利器,支持离线.格式排版等,而且拥有众多的插件.博客园推荐了代码插入插件,但是没有提供WLW的公式编译插件.目前我的一般做法是:先在Word下使用MathType编辑好公式,然后将公式 ...

  8. 在word 2013中输入latex公式

    注意:版权所有,转载请注明出处 向word输入LaTeX公式,插件有很多,前面在使用的是一个叫做Aurora的插件,结果不是免费的,用了一段时间就要收费是,所以就不用了,从网上找到别人的介绍,可以使用 ...

  9. Latex 公式在线可视化编辑器

    寻觅 最近的一个demo需要用到Latex公式在线编辑器,从搜索引擎一般会得到类似http://latex.codecogs.com/eqneditor/editor.php的结果,这个编辑器的问题在 ...

随机推荐

  1. mysql的一些配置操作

    mysql的一些配置操作 一.背景 二.mysql配置 三.慢查询日志 1.命令行临时生效 2.配置文件修改永久生效 3.慢查询日志解释 4.mysqldumpdlow查看慢查询日志 四.查看索引为何 ...

  2. csp总结 (差点爆零的总结)

    T1,iterator忘了怎么写了,想了很久都想不出来有什么可以替代,只好O(n^2): T2,不会,只会打暴力 T3,自以为是正解,写了很久大概3h,却一直过不了大样例,大样例输出全是0: T4,不 ...

  3. Machine learning(2-Linear regression with one variable )

    1.Model representation Our Training Set [训练集]: We will start with this ''Housing price prediction'' ...

  4. Oracle 11g 新建用户

    create user XXXuser identified by XXXpassword;--创建用户XXXuser,设置初始密码XXXpassword alter user XXXuser ide ...

  5. 基于屏幕空间的实时全局光照(Real-time Global Illumination Based On Screen Space)

    目录 Reflective Shadow Maps(RSM) RSM 的重要性采样 RSM 的应用与缺陷 Screen Space Ambient Occulsion(SSAO) SSAO Blur ...

  6. 嵌入式开发板nfs挂载

    板子要开始调试了,第一个头大的问题就是调试过程中更新的文件怎么更新到板子上,以前用sd卡拷贝来来回回太浪费时间了,adb也需要接线各种连接操作. 现在板子有wifi可用,是时候把nfs共享搭起来了. ...

  7. 求1+2+3...+n 牛客网 剑指Offer

    求1+2+3...+n 牛客网 剑指Offer 题目描述 求1+2+3+...+n,要求不能使用乘除法.for.while.if.else.switch.case等关键字及条件判断语句(A?B:C). ...

  8. Luogu P3758 [TJOI2017]可乐 | 矩阵乘法

    题目链接 让我们先来思考一个问题,在一张包含$n$个点的图上,如何求走两步后从任意一点$i$到任意一点$j$的方案数. 我们用$F_p(i,j)$来表示走$p$步后从$i$到$j$的方案数,如果存储原 ...

  9. django test, app aren't loaded yet

    django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet. 解决方法: 用django的TestCase from djan ...

  10. Android Thermal HAL 降龙十八掌

    基本概念 参阅下面两篇文章,就可以大概了解一些概念的内容了 https://source.android.com/devices/architecture/hidl/thermal-mitigatio ...