在轴环境中使用 \draw 的奇怪行为

在轴环境中使用 \draw 的奇怪行为

考虑以下代码片段:

\documentclass{standalone}
\begin{document}
\begin{tikzpicture}
  \begin{axis}
    \draw[-latex,cyan] (axis cs:0,0) -- (axis cs:1,1);
    \addplot coordinates {(1,1)};
  \end{axis}
\end{tikzpicture}
\end{document}

\draw如果我注释掉 , 就不会显示。\addplot我是不是错过了什么?

答案1

您的日志文件将包含消息

Package pgfplots Warning: You have an axis with empty range (in direction y). Replacing it with a default range and clearing all plots. on input line 8.

解决办法是添加xmin,xmax,ymin,ymax适当的值。

相关内容