Latex 中的序列标记

Latex 中的序列标记

在序列 {1, 2, 3, ...} 中,我想在每个项下写一个向下的箭头,并将它们标记为 x_1、x_2 等。我该怎么做?我试过矩阵命令和数组命令。它没有给我正确的形式。谢谢。

答案1

我希望下面的某个解读能够接近你的预期。

\documentclass{article}

\begin{document}

\[
\begin{array}{*5{c}}
1&2&3&\ldots&n\\[-2pt]
\downarrow&\downarrow&\downarrow& &\downarrow\\[-2pt]
x_1&x_2&x_3&\ldots&x_n
\end{array}
\]

\[
\begin{array}{*5{l}}
1&2&3&\ldots&n\\
\downarrow_{x_1}&\downarrow_{x_2}&\downarrow_{x_n}& &\downarrow_{x_n}
\end{array}
\]

\end{document}

在此处输入图片描述

答案2

\documentclass{article}
\usepackage{stackengine}
\stackMath
\begin{document}
\[
\{
\stackunder{1,}{\stackunder{\downarrow\,}{\scriptscriptstyle x_1}}\,
\stackunder{2,}{\stackunder{\downarrow\,}{\scriptscriptstyle x_2}}\,
\stackunder{3,}{\stackunder{\downarrow\,}{\scriptscriptstyle x_3}}\,
\ldots
\}
\]
\end{document}

在此处输入图片描述

如果不喜欢 中的下标外观\scriptscriptstyle,这里有一个替代方案:

\documentclass{article}
\usepackage{stackengine,graphicx}
\stackMath
\def\sss#1{\scalebox{.8}{$\scriptstyle#1$}}
\begin{document}
\[
\{
\stackunder{1,}{\stackunder{\downarrow\,}{\sss{x_1}}}\,
\stackunder{2,}{\stackunder{\downarrow\,}{\sss{x_2}}}\,
\stackunder{3,}{\stackunder{\downarrow\,}{\sss{x_3}}}\,
\ldots
\}
\]
\end{document}

在此处输入图片描述

相关内容