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. 关于linux下编译的几点知识

    1.-L.-rpath 和 rpath_link的区别 参考博客文章:https://www.cnblogs.com/candl/p/7358384.html (1)-rpath和-rpath-lin ...

  2. 【STM32学习笔记】USART 硬件流控

    流控的概念源于 RS232 这个标准,在 RS232 标准里面包含了串口.流控的定义.大家一定了解,RS232 中的"RS"是Recommend Standard 的缩写,即&qu ...

  3. 单片机STM32的5个时钟源知识

    众所周知STM32有5个时钟源HSI.HSE.LSI.LSE.PLL,其实他只有四个,因为从上图中可以看到PLL都是由HSI或HSE提供的. 其中,高速时钟(HSE和HSI)提供给芯片主体的主时钟.低 ...

  4. 六. Go并发编程--WaitGroup

    一. 序言 WaitGroup是Golang应用开发过程中经常使用的并发控制技术. WaitGroup,可理解为Wait-Goroutine-Group,即等待一组goroutine结束.比如某个go ...

  5. 接口自动化 - pytest-fixture -scope作用范围

            接口自动化-pytest中的fixture - scope                介绍 fixture文章中介绍的比较少,同学们可以去搜索下fixture的详解或者去看看源码 ...

  6. Python正则表达式使用小记

    最近做Python课实验发现正则表达式和它在py中的的标准库re有很多能多琢磨一下的点,遂决定写成一篇小记,以后想复习能再来看看. 名词 因为不同文献书籍对正则表达式的描述有差别,我在这里列出一下我已 ...

  7. Python基础入门(1)- Python环境搭建与基础语法

    Python编程环境搭建 Python环境搭建 官网下载:https://www.python.org/ python --version PyCharm下载安装 安装 官网下载:https://ww ...

  8. 注解@RunWith的作用

    @RunWith就是一个运行器 @RunWith(JUnit4.class)就是指用JUnit4来运行 @RunWith(SpringJUnit4ClassRunner.class),让测试运行于Sp ...

  9. CF285D.D. Permutation Sum

    CF285D. Permutation Sum 题目 大意 寻找a,b两个排列从0到n-1,有c[i]=(a[i]+b[i])%n+1,使得c[i]也为全排列的排列方式 思路 a中元素和b中元素的对应 ...

  10. axios通过post请求下载文件/图片

    我们平常下载文件一般都是通过get请求直接访问进行下载, 但是当有特殊情况如权限控制之类的会要求我们通过post请求进行下载,这时就不一样了, 具体方法是通过协调后端,约定返回的文件流,请求的resp ...