我想要跨越矩阵中的行和列,但仍然不知道。
\documentclass{article}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\usepackage{ulem}
\usepackage{kbordermatrix}% http://www.hss.caltech.edu/~kcb/TeX/kbordermatrix.sty
\usepackage{soul}
\begin{document}
\renewcommand{\kbldelim}{(}% Left delimiter
\renewcommand{\kbrdelim}{)}% Right delimiter
\[
\text{matriz} = \kbordermatrix{
& t1 & t2 & t3 & t4 & t5 \\
a1 & 1 & 1 & 1 & 1 & 0 \\
a2 & 0 & 1 & 14 & 99 & 0 \\
a3 & 0 & 0 & 1 & 0 & 0 \\
a4 & 0 & 0 & 0 & 1 & 0 \\
a5 & 30 & 155 & 0 & 0 & 0
}
\]
\end{document}
答案1
您可以使用nicematrix
它将在矩阵的每个单元下创建一个 PGF/Tikz 节点。然后,您可以使用 Tikz 绘制所需的线条。
\documentclass{article}
\usepackage{nicematrix}
\usepackage{tikz}
\begin{document}
\[
\text{matriz} =
\begin{pNiceMatrix}[first-row,first-col]
& t_1 & t_2 & t_3 & t_4 & t_5 \\
a_1 & 1 & 1 & 1 & 1 & 0 \\
a_2 & 0 & 1 & 14 & 99 & 0 \\
a_3 & 0 & 0 & 1 & 0 & 0 \\
a_4 & 0 & 0 & 0 & 1 & 0 \\
a_5 & 30 & 155 & 0 & 0 & 0
\CodeAfter
\begin{tikzpicture}
\draw [thick,red] (3-1.west) -- (3-5.east) ;
\draw [thick,blue] (4-0.west|-4-5.east) -- (4-5.east) ;
\end{tikzpicture}
\end{pNiceMatrix}
\]
\end{document}