引脚角度不被接受

引脚角度不被接受

我正在尝试绘制一个 45 度角的图钉。由于某种原因,该角度不被接受,并被视为图钉标签:

\documentclass[tikz]{standalone}
\usetikzlibrary{intersections}
\begin{document}
\begin{tikzpicture}[scale=2.54]
 \path[draw,red,name path=thresh] (0,0.4) -- (4.0,0.4);
 \path[draw,blue,name path=four] (0,0) -- (4.0,1);
 \path[name intersections={of=four and thresh,name=newfour}];
 \node[style={fill=black,circle,scale=0.3},
      pin={[pin edge={black,thick}]45:{cross}}] at (newfour-1) { };
\end{tikzpicture}
\end{document}

结果如下: 在此处输入图片描述

我该如何修复此问题?

注意:我的pgf版本是2.10。

相关内容