Rahmen auf eine Spalte einer Matrix setzen

Rahmen auf eine Spalte einer Matrix setzen

Ich habe eine Matrix, die wie folgt geschrieben ist:

\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}

Ich hätte gern eine Box, die den Inhalt der vierten Spalte von der vierten Zeile bis zum Ende umrahmt. Ich frage mich, wie das geht?! Ich wäre für jede Hilfe dankbar.

Antwort1

\smashHier ist eine Möglichkeit, ein ed \fboxum ein gelöschtes zu verwenden \rule. BEARBEITET, um ein farbiges Kästchen bereitzustellen.

\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}

Bildbeschreibung hier eingeben

Und wenn Sie die Matrixeinträge rechtsbündig haben möchten, können Sie Folgendes verwenden 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}

Bildbeschreibung hier eingeben

Antwort2

Mittikzmark

\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}

Bildbeschreibung hier eingeben

verwandte Informationen