Pgfplots:通过原点的轴

Pgfplots:通过原点的轴

我不知道我的问题是什么,但我的图表的轴没有经过原点。我读过这个答案但它对我不起作用。

以下是 MWE:

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[ axis lines=middle]
\addplot {x^2+20};
\end{axis}
\end{tikzpicture}
\end{document}

和我的输出在此处输入图片描述

也许你可以告诉我哪里出了问题。

答案1

您可以ymin=0在轴选项中指定

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[ axis lines=middle,ymin=0]
\addplot {x^2+20};
\end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容