使用 pgfplots 记忆图片

使用 pgfplots 记忆图片

根据我的估计,示例图中的两个矩形应该完全重叠。如果有人能解释为什么它们不重叠,我将不胜感激!我推测这是我的 TikZ 版本 (2.10) 中的一个错误,但是下载最新的 TikZ 并没有缓解这个问题。

谢谢

\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}

Version (\pgfversion)

\begin{tikzpicture}[remember picture]
\begin{axis}
\addplot coordinates { (0,0) (1,1) };
\coordinate (X) at (axis cs:0.5,0.5);
\node [anchor=north east, draw, inner sep=5mm, red] at (axis cs:0.5,0.5){};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}[remember picture, overlay]
\node [anchor=north east, dashed, draw, inner sep=5mm, green] at (X) {};
\end{tikzpicture}
\end{document}

文档截图

答案1

Matthew Leingang 和 Marco Daniel 的评论是正确的:更新到最新版本的 PGFPlots 解决了这个问题。我之前尝试过这个,但无济于事。这是因为我使用了将 TEXMFHOME 设置为包含最新版本的目录的方法。无论出于什么原因,这都不起作用。使用 pgfplots 手册第 9 页中描述的 TEXINPUTS 确实有效。

谢谢您的帮助,

相关内容