如何添加标签的行和列(如a
,b
,c
,d
等)这上面去到矩阵的左(均为外),但与所述行和列排列明显?
一个示例矩阵:
\[ \begin{pmatrix} t & 1-t & -1 & 0 & 0 \\ 0 & t & 1-t & -1 & 0 \\ 0 & 0 & t & 1-t & -1 \\ -1 & 0 & 0 & t & 1-t \\ 1-t & -1 & 0 & 0 & t \end{pmatrix} \]
小智.. 27
你需要使用\ bordermatrix.http://www.math.harvard.edu/texman/node25.html上有一个例子.
你需要使用\ bordermatrix.http://www.math.harvard.edu/texman/node25.html上有一个例子.
您可能想尝试kbordermatrix包.其文档可在此处找到(请注意,该软件包不是CTAN的一部分).它比古老的边界矩阵更现代,更先进.一个例子如下:
\usepackage{kbordermatrix} % include package @ document preamble \renewcommand{\kbldelim}{(} % change default array delimiters to parentheses \renewcommand{\kbrdelim}{)} % ... \[ \kbordermatrix{ \mbox{corner_text}&\alpha & \beta & \gamma & \delta \\ % column indices 1 & t & 1-t & -1 & 0 & 0 \\ 2 & 0 & t & 1-t & -1 & 0 \\ 3 & 0 & 0 & t & 1-t & -1 \\ 4 & -1 & 0 & 0 & t & 1-t \\ 5 & 1-t & -1 & 0 & 0 & t % 1, 2, 3, 4, 5 are row indices } \]