包含矩阵的数组

包含矩阵的数组
             BAC  GM  IBM  TRW
      JOHN   200 300  100  200
A =
      PAUL   100 200  400    0

我想创建一个类似于上面的数组,但方括号应该(仅)包含数字数组,其行和列仍应与字母设置的内容对齐。“A”不应与数字数组的中间空白行对齐,而应居中,就像有人这样写的那样:

A = \left[ \begin{array}{cccc} .... \end{array} \right]

怎样才能做到这一点?

答案1

考虑使用kbordermatrix

在此处输入图片描述

\documentclass{article}

\usepackage{kbordermatrix,amsmath}

\begin{document}

\[
  A = \kbordermatrix{
    & \text{BAC} & \text{GM} & \text{IBM} & \text{TRW} \\
    \text{JOHN} & 200 & 300 & 100 & 200 \\
    \text{PAUL} & 100 & 200 & 400 & \phantom{00}0
  }
\]

\end{document}

相关内容