图例中如何引用剧情?

图例中如何引用剧情?

我想引用图例中的情节。问题是,蓝色情节中的小图例图像在图例中显示扭曲了。

这是一个简单的例子:

\documentclass{minimal}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
  \begin{axis}
    \addplot[color=red] coordinates {(1, 1) (2, 200)};
    \addlegendentry{plot 1 (\ref{pgfplots:plot2} xy added)}

    \addplot[color=blue, mark=x, forget plot] coordinates {(2, 200) (2.5, 100) (3, 50)};
    \label{pgfplots:plot2}

    \addplot[color=red, forget plot] coordinates {(3, 50) (4, 100)};
  \end{axis}
\end{tikzpicture}\\
Here the legend image \ref{pgfplots:plot2} is displayed correctly.
\end{document}

如何修复此问题?感谢您的时间。

答案1

这是 pgfplots 1.5.1(当前稳定版本)中的一个错误。

我会处理它(\tikzifinpicturetikz 附带的宏需要修复)。

相关内容