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