使用 tikzpicture 均衡矩阵

使用 tikzpicture 均衡矩阵

我无法正确地用线和正方形来均衡矩阵。另外,是否可以写出它的三维版本,即用立方体均衡的三维矩阵?

\begin{equation}
(\square,\square,\square,\cdots,\square)=\noindent\rule{2cm}{0.3pt}
\end{equation}
\begin{equation}
\begin{pmatrix}
\square & \square & \dots & \square \\
\square & \square & \dots & \square \\
\hdotsfor{4} \\
\square & \square & \dots & \square
\end{pmatrix}
=
\begin{tikzpicture}
\draw[thick] (0,0) -- (0,1) -- (2,1) -- (2,0);
\draw[thick] (0,0) -- (0,-1) -- (2,-1) -- (2,0);
\end{tikzpicture}
\end{equation}

答案1

我猜到了你使用的软件包,这可能是一个可行的解决方案。只需将正方形放在矩阵中,然后raise使用\rule 命令

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{tikz}

\begin{document}
\begin{equation}
(\square,\square,\square,\cdots,\square)=\noindent\rule[0.5ex]{3em}{0.55pt}
\end{equation}
\begin{equation}
\begin{pmatrix}
\square & \square & \dots & \square \\
\square & \square & \dots & \square \\
\hdotsfor{4} \\
\square & \square & \dots & \square
\end{pmatrix}
=
\begin{matrix}
\begin{tikzpicture}
\draw[thick] (0,0) -- (0,1) -- (2,1) -- (2,0);
\draw[thick] (0,0) -- (0,-1) -- (2,-1) -- (2,0);
\end{tikzpicture}
\end{matrix}
\end{equation}
\end{document}

解决方案

相关内容