pgfplots:\draw 在轴环境中不起作用

pgfplots:\draw 在轴环境中不起作用

以下是 MWE:

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\begin{document}
\begin{tikzpicture}[
        ]
    \begin{axis}[
        ]
        \draw (0,0) -- (1,1);
    \end{axis}
\end{tikzpicture}
\end{document}

我得到的是空轴。就像先前这个问题。不过,正如你所见,我确实指定了一个足够新的兼容版本。

答案1

pgfplots 的理念是,它会调整轴以有效地显示您绘制的图。如果您不(想)绘制图,您仍然可以设置xmin等以获得非空图。不用说,这至少在某种程度上违背了 pgfplots 的目的,但如果您这样做是为了毫不费力地获得带标签的轴,那当然没问题。

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\begin{document}
\begin{tikzpicture}[]
    \begin{axis}[xmin=0,xmax=1,ymin=0,ymax=1]
        \draw (0,0) -- (1,1);
    \end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容