PGFPlots 中引脚角度的奇怪行为

PGFPlots 中引脚角度的奇怪行为

可能重复:
我如何强制 TikZ 引脚角度?
二维图中的 TikZ 节点引脚角度

我需要在图表中做一些标记,指出情节的特征点。为了不让文本覆盖情节线,我需要调整图钉的角度。

然而,角度似乎没有按照应有的方式发挥作用。请参见以下示例:

\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[ymax=2]
\addplot+[domain=-360:360] {sin(x)};
\node[coordinate,pin=93:{93 degrees}]
    at (axis cs:-270,1) {};
\node[coordinate,pin=94:{94 degrees?}]
    at (axis cs:90,1) {};
\end{axis}
\end{tikzpicture}
\end{document}

第一个引脚的角度为 93 度,看起来正确,但第二个引脚显然不符合 94 度。顺便说一下,87 度设置正确,而 86 度设置不正确,也会出现同样的情况。

为什么会这样?pgfplots 中有一个错误?我该如何克服这个问题?还有其他方法可以指定具有应有角度的引脚吗?

相关内容