We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a7f56b commit e14aff0Copy full SHA for e14aff0
docs/rules/academic/handbook/latex.md
@@ -11,15 +11,26 @@ $\LaTeX$ 是一种基于 $\TeX$ 的排版系统,能够很方便的生成数学
11
12
## 基础知识
13
14
-### 行内公式与行间公式
+### 行内公式与行间公式 {#math}
15
16
-行内公式(即穿插在文本中的公式)两侧分别使用一个美元 `$ $` 符号定界。
17
-例如 `$x \cdot \sin(y)$` 显示为 $x \cdot \sin(y)$。
+行内公式(**Inline Math**,即穿插在文本中的公式)两侧分别使用一个美元 `$ $` 符号定界。
18
19
-行间公式(即独立成行的公式)两侧分别使用 `$$ $$`(每侧两个美元符号)定界,Markdown 代码可以跨行写,例如:
+例如:
+
20
+ ```md
21
+ 文本文本$x \cdot \sin(y)$文本文本
22
+ ```
23
24
+显示为:
25
26
+文本文本$x \cdot \sin(y)$文本文本
27
28
+行间公式(**Math Blocks**,独立成行居中的公式) 前后两行分别使用 `$$ $$`(每行两个美元符号)定界,Markdown 代码可以跨行写,例如:
29
30
```latex
-$$ H_n = \sum_{i = 1}^{n} \frac{1}{i} $$
31
+$$
32
+H_n = \sum_{i = 1}^{n} \frac{1}{i}
33
34
```
35
36
显示为
@@ -62,7 +73,9 @@ $$
62
73
对于行间公式,使用 `\textstyle` 的效果:
63
74
64
75
65
-$$ \textstyle \int \frac{\mathop{}\!\mathrm{d} x}{x} = \ln(x) + C $$
76
77
+ \textstyle \int \frac{\mathop{}\!\mathrm{d} x}{x} = \ln(x) + C
78
+ $$
66
79
67
80
68
81
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments