博客写作时的一些规范和特殊用法参考。同时作为 Markdown 渲染时的标准参考文件。
File
- 使用文件名为链接名,因此使用英文,用
-
代替空格 - Front Matter 中写上
date
和lastmod
属性
Markdown
脚注
示例1
标题引用
可以为标题增加 ID,以便在文内引用
Callout
Useful information that users should know, even when skimming content.
Helpful advice for doing things better or more easily.
Key information users need to know to achieve their goal.
Urgent info that needs immediate user attention to avoid problems.
Advises about risks or negative outcomes of certain actions.
Image Caption
Mermaid Graph
pie "Dogs" : 386 "Cats" : 85 "Rats" : 15
Grammar
- 推导数学公式时加入
:
,表示下面的公式与本段有关,除非有连接词 - 中文使用直角引号「」
- 中文和英文之间空格
- 数字和单位之间空格,如 8 GB
Math
基本知识
注释以
%
开头颜色:${\color{red} a + b =} c$
分数如果分子分母只有一个符号则可以省去括号:$\frac 1 2$
盒装公式:$\boxed{a+b}$
对比 $|-k|, \lvert - k\rvert, |{-k}|$; $\lVert -k \rVert, \|-k\|$
\mod
相关:$a\mod b$, $a\pmod b$, $a\bmod b$数学推导:$\implies, \iff$
- $$ \cfrac{1}{\sqrt{2}+ \cfrac{1}{\sqrt{2}+ \cfrac{1}{\sqrt{2}+\dotsb }}} $$
- $$ \begin{gather*} \sum_a \qquad \sum\nolimits_a \\ \int_a \qquad \int\limits_a \end{gather*} $$
- $$ \sum_{\substack{ 0\le i\le m \\ 0 < j < n}} P(i,j) $$
\text
表示 text,\mathrm
表示数学符号,\operatorname
表示函数
Spacing
Code | Description |
---|---|
\quad | space equal to the current font size |
\, | 3/18 of \quad |
\: | 4/18 of \quad |
\; | 5/18 of \quad |
\! | -3/18 of \quad |
\ (space after backslash) | equivalent of space in normal text |
\qquad | twice of \quad |
因此在定义自己的运算符时应确定是二元运算符 \mathbin{\#}
还是关系运算符 \mathrel{\#}
字体
默认拉丁字母、小写希腊字母是斜体,阿拉伯数字、大写希腊字母是罗马体
对字母有效:(一般用来表示特殊集合)
\mathbb
: 黑板粗体\mathcal
: 手写体(无小写)\mathscr
: 花体\mathfrak
: 哥特体
Display Math
主环境
$$ \begin{equation} e^{\pi i} + 1 = 0 \end{equation} $$$$ \begin{multline} p = 1+2+3 \\ +4+5+6 \\ +7+8+9+10+11 \\ +12+13+14 \end{multline} $$$$ \begin{gather} 2x - 5y = 8 \\ 3x^2 + 9y = 3a + c \end{gather} $$$$ \begin{align} x&=y & w &=z & a&=b+c\\ 2x&=-y & 3w&=\frac{1}{2}z & a&=b\\ -4 + 5x&=2+y & w+2&=-1+w & ab&=cb \end{align} $$$$ \begin{alignat}{3} & m \quad && \text{módulo} \quad && m>0\\ & a \quad && \text{multiplicador} \quad && 0 主环境都可以在名字最后加入*
来抑制自动编号从属环境
$$ \begin{equation} \begin{split} \cos 2x &= \cos^2 x - \sin^2 x \\ &= 2\cos^2 x - 1 \end{split} \end{equation} $$$$ \require{mathtools} \begin{gather*} f(x) = \begin{cases} \frac{x+1}{4}, & \text{if } 0 < x < 1; \\ \max_{x} g(x), & \text{otherwise}. \end{cases} \\ f(x) = \begin{dcases} \frac{x+1}{4}, & \text{if } 0 < x < 1; \\ \max_{x} g(x), & \text{otherwise}. \end{dcases} \end{gather*} $$其它从属环境:multlined
, gathered
, aligned
, alignedat
其它
MathJax 尚不支持从属编号环境 subequations
自定义
宏TODO
$$ \def\specialFrac#1#2{\frac{x + #1}{y + #2}} \specialFrac{7}{z+3} $$$$ \DeclarePairedDelimiters\norm{\lVert}{\rVert} % require{\mathtools} \norm{v}_2 \quad \norm{\frac 1 2} \quad \norm*{\frac 1 2} \quad \norm[\Bigg]{v} $$自定义数学符号
$$ \DeclareMathOperator*{\argmin}{arg\,min\,} \DeclareMathOperator{\argmax}{arg\,max\,} \begin{gather} \argmin_x \\ \argmax_x \\ \operatorname{rank}{x} \end{gather} $$MathJax Extensions
$$ \toggle{math1}{math2}\endtoggle $$$$ \require{physics} $$$$ \require{centernot} \centernot\implies \qquad \not\implies $$mathtools:
自定规范
下面是一些自己制定的规范,用来更好的统一自己的写作,非强制
- Expectation: $\mathbb{E}$
- Set: $\mathbb{R}, \mathbb{Z}$
- Empty set: $\varnothing$
- Gaussian: $\mathcal{N}$
- Conditional probability: $p(a | b)$
- Set with conditions: $\{a \mid a\in A\}$
- $i$-th
这是一个脚注 ↩︎