样本空间符号

样本空间符号

我想写出投掷两个公平的六面骰子一次的样本空间。它看起来应该像这样:

S = {(1, 1), (1, 2), ..., (1, 6),
     (2, 1), (2, 2), ..., (2, 6),
     ...      ...    ...   ...
     (6, 1), (6, 2), ..., (6, 6)}

其中第三行“...”实际上是垂直的。

我怎样才能在 LaTeX 中做到这一点?

答案1

排版的一种方法是使用align

在此处输入图片描述

如果您愿意做更多的工作,您可以使用alignat它来产生更好的输出:

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{amsmath}
\usepackage{calc}
\usepackage{xcolor}\pagecolor{white}

\newcommand*{\CenterVdots}{\makebox[\widthof{(0,0),}][c]{\vdots}}

\begin{document}
\begin{align*}
    S = \{&(1, 1), (1, 2), \dots, (1, 6), \\
          &(2, 1), (2, 2), \dots, (2, 6), \\
          &\CenterVdots  \CenterVdots  \CenterVdots \CenterVdots \\
          &(6, 1), (6, 2), \dots, (6, 6) \}
\end{align*}
\end{document}

代码

\documentclass{article}
\usepackage{amsmath}
\usepackage{calc}
\usepackage{xcolor}\pagecolor{white}

\newcommand*{\CenterVdots}[1][(0,0),]{\makebox[\widthof{#1}][c]{\vdots}}

\begin{document}
\begin{alignat*}{5}
    S = \{&(1, 1), &&\,(1, 2), &&\,\dots, &&\,(1, 6), \\
          &(2, 1), &&\,(2, 2), &&\,\dots, &&\,(2, 6), \\
          &\CenterVdots  &&\,\CenterVdots  &&\,\CenterVdots[\dots] &&\,\CenterVdots \\
          &(6, 1), &&\,(6, 2), &&\,\dots, &&\,(6, 6) \}
\end{alignat*}
\end{document}

相关内容