📅  最后修改于: 2023-12-03 15:13:12.709000             🧑  作者: Mango
\dots
命令\dots
命令用于在数学公式中插入省略号。
\dots
命令可以在任何数学模式中使用,通常用在加法、乘法、指数、枚举等场景中。
例如,可以用 \dots
来表示前 $n$ 个自然数之和:
$$ \sum_{i=1}^n i = 1 + 2 + \dots + n $$
也可以用它来表示无限级数的部分和:
$$ \sum_{n=1}^\infty a_n = a_1 + a_2 + \dots + a_n + \dotsb $$
注意,\dots
命令只能表示水平省略号,如果需要表示斜向省略号或垂直省略号,需要使用其他符号。
\dots
命令不接受可选参数。
可以使用以下代码进行测试:
\documentclass{article}
\begin{document}
Sum of the first $n$ natural numbers:
$$\sum_{i=1}^n i = 1 + 2 + \dots + n$$
Sum of an infinite series:
$$\sum_{n=1}^\infty a_n = a_1 + a_2 + \dots + a_n + \dotsb$$
\end{document}
生成的效果如下:
Sum of the first $n$ natural numbers: $$\sum_{i=1}^n i = 1 + 2 + \dots + n$$
Sum of an infinite series: $$\sum_{n=1}^\infty a_n = a_1 + a_2 + \dots + a_n + \dotsb$$
注意到第二个公式中使用了 \dotsb
命令,该命令产生更加紧凑的省略号效果,可以视情况使用。