我们如何为该矩阵添加如颜色所示的标签?

我们如何为该矩阵添加如颜色所示的标签?

在此处输入图片描述

我当前使用的代码如下

\begin{equation*}
\mathsf{L} ~~=~~
\begin{bmatrix}
1 & 0\\
0 & -1\\
1 & 1\\
1 & 1
\end{bmatrix}
\end{equation*}

答案1

一种方法是使用nicematrix包:

\documentclass{article}
\usepackage{nicematrix}

\begin{document}
    \[
\mathsf{L} =
    \begin{bNiceArrayC}{CC}[code-for-last-col = \color{red}\small]
1 &  0  & A \\
0 & -1  & B \\
1 &  1  & C \\
1 &  1  & D
    \end{bNiceArrayC}
    \]
\end{document}

在此处输入图片描述

答案2

一种老方法 - peraphs 原始方法 - 但有效方法是使用两个矩阵。一个带括号,另一个不带括号。之后,您可以使用包添加随机(基本)颜色。我xcolor为文本设置了一个小尺寸A,,,,。BCD

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}
\usepackage{xcolor}

\begin{document}
\[
\mathsf{L} =\begin{bmatrix}
1 &  0 \\
0 & -1 \\
1 &  1 \\
1 &  1 
\end{bmatrix}
\begin{matrix}
{\scriptstyle \textcolor{red}{A}}\\
{\scriptstyle \textcolor{red}{B}}\\
{\scriptstyle \textcolor{red}{C}}\\
{\scriptstyle \textcolor{red}{D}}
\end{matrix}\]
\end{document}

相关内容