我需要在矩陣內添加一些直線來指示行的標籤,如下所示:
我怎麼做?
答案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}
答案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}