在矩阵中创建直线

在矩阵中创建直线

我需要在矩阵中添加一些直线来指示行的标签,如下所示:

截屏

我怎么做?

答案1

对于这种情况来说,领导者是最佳选择。amsmath提供\hdotsfor{<cols>}在列间绘制虚线引线的功能<cols>。也可以通过两次设置特定行(例如,一次使用\hdotsfor,一次使用行号)来覆盖行号。我还添加了\numberrowwithline{<cols>}{<stuff>}绘制一条线(而不是点)作为虚线引线并插入列<stuff>中间的<cols>功能。两侧的默认间距为\fboxsep

以下是修改后的示例,取自 Herbert 的mathmode文档

在此处输入图片描述

\documentclass{article}
\usepackage{xcolor}% http://ctan.org/pkg/xcolor
\usepackage{amsmath}% http://ctan.org/pkg/amsmath

\newcommand{\numberrowwithline}[2]{%
  \multicolumn{#1}c%
    {\xleaders\hbox{-\kern-1pt}\hfill\kern\fboxsep%
        #2\hspace*{\fboxsep}%
        \xleaders\hbox{-\kern-1pt}\hfill\kern0pt%
        }%
}

\begin{document}
\begin{equation}
  \underline{A}=\left[\begin{array}{ccccccc}
    a_{11} & a_{12} & 0 & \ldots & \ldots & \ldots & 0 \\
    a_{21} & a_{22} & a_{23} & 0 & \ldots & \ldots & 0 \\
    0 & a_{32} & a_{33} & a_{34} & 0 & \ldots & 0 \\
    \hdotsfor{7} \\
    \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots \\
    \hdotsfor{7} \\[-\normalbaselineskip]
        \multicolumn{7}{c}{\colorbox{white}{\ $R_n$\ }} \\
        \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots \\
        \numberrowwithline{7}{R_i} \\
    0 & \ldots & 0 & a_{n-2,n-3} & a_{n-2,n-2} & a_{n-2,n-1} & 0 \\
    0 & \ldots & \ldots & 0 & q_{n-1,n-2} & a_{n-1,n-1} & a_{n-1,n} \\
    0 & \ldots & \ldots & \ldots & 0 & a_{n,n-1} & a_{nn}
  \end{array}\right]
\end{equation}
\end{document}

随着xhfill你可以对领导者的颜色和类型感到疯狂。查看xhfill文档以不同风格的线条作为样本。

答案2

  \multicolumn{3}{c}{\hrulefill R_2 \hrulefill}

如果它是一个 3 列数组

答案3

nicematrix

\documentclass{article}
\usepackage{xcolor}
\usepackage{nicematrix,tikz}


\begin{document}

$\begin{bNiceArray}{cc@{\hspace{7mm}}ccc}
a_{11} &a_{12} & \Cdots[shorten=5pt] & a_{1,n-1} & a_{1n} \\
\Cdots[line-style=solid] && R_2 & \Cdots[line-style=solid] \\
&& \vdots \\
\Cdots[line-style=solid] && R_n & \Cdots[line-style=solid] \\
\end{bNiceArray}$

\end{document}

上述代码的输出

相关内容