下标中的列向量?

下标中的列向量?

我尝试将点 (2,1) 写为下标中的列向量。我尝试

 P_{\begin{pmatrix} 2 \\  1 \end{matrix}}

但是这给了我一个下标矩阵,其大小与通常的 2x1 矩阵相同。我该如何调整这个矩阵下标的大小?

答案1

psmallmatrix从包装中取出使用mathtools

\documentclass{article}
\usepackage{mathtools}
\begin{document}
$P_{\begin{psmallmatrix} 2 \\  1 \end{psmallmatrix}}$
\end{document}

在此处输入图片描述

答案2

我可能会用\scriptscriptstyle这个:

\documentclass{article}
\usepackage{amsmath}

\newcommand{\vsub}[1]{%
  \left(\begin{smallsmallmatrix}#1\end{smallsmallmatrix}\right)%
}

% borrow from amsmath.sty
\makeatletter
\newenvironment{smallsmallmatrix}{\null\vcenter\bgroup
  \Let@\restore@math@cr\default@tag
  \baselineskip4\ex@ \lineskip1.5\ex@ \lineskiplimit\lineskip
  \ialign\bgroup\hfil$\m@th\scriptscriptstyle##$\hfil&&\thickspace\hfil
  $\m@th\scriptscriptstyle##$\hfil\crcr
}{%
  \crcr\egroup\egroup
}
\makeatother

\begin{document}

\[
P_{\vsub{2 \\ 1}}+Q_{\vsub{0 & 1 \\ 1 & 0}}
\]

\end{document}

在此处输入图片描述

相关内容