tikz 包中的箭头内的文字

tikz 包中的箭头内的文字

我想用 tikz 画一个箭头,看起来像:-text-> 如你所见,文本在箭头中间,不在上方或下方或其他位置。我该怎么做?谢谢

答案1

也许您正在寻找其中之一。

\documentclass[border=3mm,tikz]{standalone}
\usetikzlibrary{shapes.arrows} 
\begin{document}
\begin{tikzpicture}
 \path (0,1) node [single arrow,draw]{text};
 \draw[->] (0,0) -- node[fill=white,sloped]{text} (2,-0.5);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容