在矩陣中創建直線

在矩陣中創建直線

我需要在矩陣內添加一些直線來指示行的標籤,如下所示:

螢幕截圖

我怎麼做?

答案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}

上述程式碼的輸出

相關內容