添加多个矩阵列和行标签

添加多个矩阵列和行标签
\begin{equation*}
\centering
P = 
\begin{pmatrix}
p_{1,1} & p_{1,2} & \cdots & p_{1,10} \\
p_{2,1} & p_{2,2} & \cdots & p_{2,10} \\
\vdots  & \vdots  & \ddots & \vdots  \\
p_{10,1} & p_{10,2} & \cdots & p_{10,10} 
\end{pmatrix}
\end{equation*}

我正在尝试为行和列添加标签,如下所示:

对于行,我想要一个单独的标题“家庭得分”,然后对于单独的行,我想要 0,1,........,9。

对于列,我想要一个标题“客场得分”,对于单独的列,我想要 0,1,........,9。

使用乳胶可以实现这一点吗?

答案1

就这样,搞定了blockarray吗?

\documentclass{article}
\usepackage{amsmath}
\usepackage{blkarray}

\begin{document}

\begin{equation*}
P =
\begin{blockarray}{rcccc}
\text{Home} & \BAmulticolumn{4}{c}{\text{Away Score}}\\
\text{Score} & 0 & 1 & \dots & 9 \\
\begin{block}{r(cccc)}
0 & p_{1,1} & p_{1,2} & \cdots & p_{1,10} \\
1 & p_{2,1} & p_{2,2} & \cdots & p_{2,10} \\
\vdots & \vdots & \vdots & \ddots & \vdots \\
9 & p_{10,1} & p_{10,2} & \cdots & p_{10,10}\\[1ex]
\end{block}
\end{blockarray}
\end{equation*}

\end{document} 

在此处输入图片描述

相关内容