我尝试将点 (2,1) 写为下标中的列向量。我尝试
P_{\begin{pmatrix} 2 \\ 1 \end{matrix}}
但是这给了我一个下标矩阵,其大小与通常的 2x1 矩阵相同。我该如何调整这个矩阵下标的大小?
答案1
答案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}