考虑以下代码片段:
\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
适当的值。