我有一個矩陣寫如下:
\begin{equation}
A={
\begin{pmatrix}
1 & -1 & 0 & 0 & 0 & \dots\\
0 & 1 & -1 & 0 & 0 &\dots\\
1 & 0 & -1 & 0 & 0 &\dots\\
0 & 0 & 1 & -1 & 0 &\dots\\
1 & 0 & 0 & -1 & 0 &\dots\\
0 & 0 & 0 & 1 & -1 &\dots\\
. & . & . & . & . &\dots\\
. & . & . & . & . &\dots\\
\end{pmatrix}
\end{equation}
我想要一個框框來框住第四列從第四行到末尾的內容。我想知道該怎麼做?我將不勝感激的幫助。
答案1
這是在 drop 周圍使用\smash
ed 的一種方法。編輯提供一個彩色盒子。\fbox
\rule
\documentclass{article}
\usepackage{amsmath,xcolor}
\fboxrule=1pt
\begin{document}
\begin{equation}
A=
\begin{pmatrix}
1 & -1 & 0 & 0 & 0 & \dots\\
0 & 1 & -1 & 0 & 0 &\dots\\
1 & 0 & -1 & 0 & 0 &\dots\\
0 & 0 & 1 & \smash{\color{red}\fbox{\color{black}\rule[-50pt]{0pt}{1pt}$-1$}} & 0 &\dots\\
1 & 0 & 0 & -1 & 0 &\dots\\
0 & 0 & 0 & 1 & -1 &\dots\\
. & . & . & . & . &\dots\\
. & . & . & . & . &\dots\\
\end{pmatrix}
\end{equation}
\end{document}
如果您希望矩陣條目右對齊,您可以使用tabstack
:
\documentclass{article}
\usepackage{tabstackengine,xcolor}
\def\mykern{\kern-\fboxsep\kern-\fboxrule}
\def\cfbox#1{\mykern\smash{\color{red}\protect\fbox{\color{black}#1}\mykern}}
\fboxrule=1pt
\begin{document}
\begin{equation}
A=
\setstacktabbedgap{1.5ex}
\renewcommand\stackalignment{r}
\parenMatrixstack{
1 & -1 & 0 & 0 & 0 & \dots\\
0 & 1 & -1 & 0 & 0 &\dots\\
1 & 0 & -1 & 0 & 0 &\dots\\
0 & 0 & 1 & \cfbox{\protect\rule[-50pt]{0pt}{1pt}$-1$} & 0 &\dots\\
1 & 0 & 0 & -1 & 0 &\dots\\
0 & 0 & 0 & 1 & -1 &\dots\\
. & . & . & . & . &\dots\\
. & . & . & . & . &\dots
}
\end{equation}
\end{document}
答案2
和tikzmark
\documentclass{article}
\usepackage{amsmath,tikz}
\newcommand{\tikzmark}[2]{\tikz[overlay,remember picture] \node[minimum width=1.5em] (#1) {#2};}
\begin{document}
\begin{equation}
A=
\begin{pmatrix}
1 & -1 & 0 & 0 & 0 & \dots\\
0 & 1 & -1 & 0 & 0 &\dots\\
1 & 0 & -1 & 0 & 0 &\dots\\
0 & 0 & 1 & \tikzmark{a}{$-1$} & 0 &\dots\\
1 & 0 & 0 & -1 & 0 &\dots\\
0 & 0 & 0 & 1 & -1 &\dots\\
. & . & . & . & . &\dots\\
. & . & . & \tikzmark{b}{.} & . &\dots\\
\end{pmatrix}
\end{equation}
\tikz[overlay,remember picture]\draw[thick,red] (a.north west) rectangle (b.south east);
\end{document}