你能告诉我为什么图表 B 和 E 打印出来会像屏幕截图中那样出现不必要的边框吗?
请注意,我对此页面上的每个图表都应用了相同的设置,只有 B 和 E 错误地出现了此问题。
非常感谢
编辑:以下是图 B 的更正代码。图的范围之前是 -7:7,这导致了图中的问题,并且 E 也存在同样的问题。希望这对您有所帮助!
\pgfplotsset{every axis/.append style={
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
title={$ $},
axis line style={<->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
ticks=none
}}
\begin{tikzpicture}
\begin{axis}[
xmin=-2,xmax=2,ymin=-1.4,ymax=1.4
]
\addplot[thick,color=black,samples=100,domain=-2:2] {-0.55*(x^3/3-1.25^2*x)};
\end{axis}
\end{tikzpicture}