答案1
欢迎来到 TeX-SE!本网站的目的是询问代码问题,而不是将屏幕截图转换为 TeX 代码。对于新手,有时会有例外。在这种情况下,您可以使用 Ti钾Z。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\[\begin{tikzpicture}
\matrix[matrix of math nodes,left delimiter={[},right delimiter={]}] (mat)
{ \times & \times & \times & ~ & ~ & ~ \\
~ & \times & \times & \times & ~ & ~ \\
~ & ~ & \times & \times & \times & ~ \\
~ & ~ & ~ & \times & \times & \times \\
~ & ~ & ~ & ~ & \times & \times \\
~ & ~ & ~ & ~ & ~ & \times \\
};
\foreach \X [evaluate=\X as \Y using {int(\X+1)}] in {1,...,5}
{\draw[<->] ([xshift=-7em+\X*1em]mat.west|-mat-\X-1) -|
([xshift=-7.5em+\X*1em]mat.west|-mat-\Y-1) -- ++(0.5em,0);}
\end{tikzpicture}\]
\end{document}