如何在乳胶中写下面的点

如何在乳胶中写下面的点

如何在 latex 中编写以下内容: (qp,-1,-1(q-1)......乘以 ,-1,1,1,......(p-1) 乘以 1)

我有一个向量,它的第一项为 qp。然后我们有 -1 作为对应项,最多可进行 q-1 次,然后我们有 1 作为对应项,最多可进行 p-1 次。

如何通过将 q-1 写在表示 -1 的点下方并将 p-1 写在表示 1 的点下方来写上述向量?

任何帮助就足够了。

答案1

像这样吗?

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
    ( q-p,\underbrace{ -1, \dotsc, -1 }_{q-1 \text{ times}},\underbrace{1 , \dotsc , 1 }_{p-1\text{ times}} )
\end{equation}

\end{document}

在此处输入图片描述

相关内容