是否可以告诉 TikZ 中的箭头稍微放松一点,以免进入目标节点的千分之一英寸以内?在我的特定情况下,我使用了干扰箭头的阴影(见下图):
答案1
使用shorten
这些箭头的选项。
\documentclass[border=1cm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[thick]
\draw [help lines] (-1,-2) grid (4,2);
\draw [blue, ->] (0,1) -- (3,1);
\draw [->, shorten >=5mm] (0,0) -- (3,0);
\draw [red, shorten <=7.5mm, shorten >=10mm] (0,-1) -- (3,-1);
\end{tikzpicture}
\end{document}