我对 tikz 包不太熟悉。我试图绘制一个函数图,但只编译了正的 $x$ 轴。此外,我尝试绘制遗漏部分的另一张图,但生成的图像相同。我想知道是什么原因造成的,以及如何修复它。
\documentclass[tikz]{report}
\usepackage{lmodern}
\usepackage[all]{xy}
\usepackage[utf8]{inputenc}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amscd}
\usepackage{amsfonts}
\usepackage{mathrsfs}
\usepackage{mathtools}
\usepackage{mathabx}
\usepackage{tikz}
\usepackage{enumerate}
\usepackage{times}
\usepackage[pdftex]{hyperref}
\usepackage{mdframed}
\usepackage{titlesec}
\usepackage{pgfplots}
\everymath{\displaystyle}
\pgfplotsset{compat=1.5}
\begin{document}
$$\begin{tikzpicture}
\begin{axis}[
domain=-3:3,
xtick={-2,0,2},ytick={-3,0,3},
y=0.4cm,x = 0.4cm, xmax=4,ymax=4,ymin=-4,xmin=-4,
axis lines=middle,
]
\addplot[domain=-3:3,blue,smooth]{\x^(2/3)*(\x^2-4)};
\end{axis}
\end{tikzpicture}$$
\end{document}