尝试使用 TikZ 绘制图形

尝试使用 TikZ 绘制图形

我在 pgfplots 手册中找到了一个很好的图表示例,并尝试用它绘制我自己的函数。但是,当我尝试绘制时x^2,我似乎得到了x^3

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}

\begin{document}

\begin{tikzpicture}[domain=-1.2:1.2]
\draw[very thin,color=gray,style=dashed] (-3,-3) grid (3,3);
\draw[->] (-3,0) -- (3,0) node[right] {$x$};
\draw[->] (0,-3) -- (0,3) node[above] {$f(x)$};
\draw[color=blue] plot (\x,{(\x)^2-2(\x)-2}) node[right] {$f(x)$};
\end{tikzpicture}

\end{document}

有人知道为什么这不能正常工作吗?

相关内容