如何在矩形旁边画一个箭头?

如何在矩形旁边画一个箭头?

我想在矩形旁边水平或垂直绘制箭头。我该如何在 overleaf 代码中编写代码?使用 tikz 包,或者其他

\begin{tikzpicture} 
\draw[black, thick] (0,0) rectangle (3,2) node[pos=.5] {text};
\end{tikzpicture}

在此处输入图片描述

答案1

@marmot 在评论中提出了一个很好的方法。这里我使用了另一种方法,即基于坐标的方法。

\documentclass[tikz]{standalone}
\usepackage{siunitx}
\begin{document}
\begin{tikzpicture} 
\draw[black, thick] (0,0) rectangle (3,2) node[pos=.5] {text};
\draw[stealth-stealth] (-.2,0) -- (-.2,2) node[midway,above,sloped] {\SI{2}{cm}};
\draw[stealth-stealth] (0,2.2) -- (3,2.2) node[midway,above] {\SI{3}{cm}};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容