我怎样才能绘制这种网格形状?

我怎样才能绘制这种网格形状?

嘿伙计们,我正在尝试用文字和箭头正确地形成一个网格形状,但我还没有成功。我该如何绘制它?在此处输入图片描述

答案1

首先:

\documentclass[tikz,border=3.14mm]{standalone}     
\begin{document}
\begin{tikzpicture}[scale=2]
\draw (0,0) grid (4,3);
\node (t1) at (0.5,0.5) {text};
\draw[-latex] (t1) to[out=90,in=-180] (0.8,1.5) node[below]{text};
\draw[-latex] (t1.north east) to[out=20,in=-150] (1.2,1.5) node[below right]{text};
\draw[-latex] (t1.south east) to[out=20,in=-200] (1.5,0.5) node[below]{text};
\end{tikzpicture}
\end{document}

在此处输入图片描述

但是,如果您的目标是更复杂的方案,您可能需要加载矩阵库并将事物绘制为节点矩阵。还有其他选项,根据您最终想要做什么,这些选项可能更合适。

相关内容