This commit is contained in:
赵鑫 2022-08-16 14:31:07 +08:00
parent 47e55f96a6
commit 179436d5b2
2 changed files with 24 additions and 14 deletions

View File

@ -33,4 +33,14 @@ $$ \sum_{k=1}^{n}{m} = \underbrace{m + m + m + \cdots + m}_{n} = m \times n $$
## 竖式计算
$ \begin{array}{ccc} &1&2\newline\times&&3\newline \hline &&6\newline&3&0 \end{array} $
$ 12 \times 3 $ 表示3个12的积也可以表示为3个10和3个2的和即36。可以用竖式计算乘法
$\begin{array}{ccc}
&1 &2 \\\\
\times & &3 \\\\
\hline
& &6 \\\\
{+} &3 &0 \\\\
\hline
= &3 &6
\end{array}$

View File

@ -1,15 +1,15 @@
# 符号
| 名称 | 符号 | LaTeX |
| ------ | ----------------------- | --------------------- |
| 加号 | $+$ | `+` |
| 减号 | $-$ | `-` |
| 乘号 | $\times$ | `\times` |
| 除号 | $\div$ | `\div` |
| 等号 | $=$ | `=` |
| 小于号 | $\lt$ | `\lt` |
| 大于号 | $\gt$ | `\gt` |
| 集合A | $\Bbb{A}$ | \Bbb{A} |
| 求和 | $ \sum_{n=1}^{100}{n} $ | `\sum_{n=1}^{100}{n}` |
| 属于 | $ \in $ | `\in` |
| | | |
| 名称 | 符号 | LaTeX |
| ------ | --------------------- | --------------------- |
| 加号 | $+$ | `+` |
| 减号 | $-$ | `-` |
| 乘号 | $\times$ | `\times` |
| 除号 | $\div$ | `\div` |
| 等号 | $=$ | `=` |
| 小于号 | $\lt$ | `\lt` |
| 大于号 | $\gt$ | `\gt` |
| 集合A | $\Bbb{A}$ | `\Bbb{A}` |
| 求和 | $\sum_{n=1}^{100}{n}$ | `\sum_{n=1}^{100}{n}` |
| 属于 | $\in$ | `\in` |
| | | |