我正在绘制z=1+|x²-y|
函数
\documentclass{article}
\usepackage{pgfplots,tikz}
\pgfplotsset{compat=1.12}
\begin{document}
\section{Introduction}
\begin{figure}[h!]
\centering
\begin{tikzpicture}
\begin{axis}[axis on top,axis equal,axis lines=center,view={110}{20},xtick=\empty,ytick=\empty,ztick=\empty,xlabel=$x$,ylabel=$y$,zlabel=$z$,xmin=-1,xmax=1,zmax=5]
\addplot3[contour gnuplot={number=20},thick] {1+abs(x^2-y)};
\addplot3[mesh,draw=gray,very thin,smooth,samples=70] {1+abs(x^2-y)};
\end{axis}
\end{tikzpicture}
%\caption{Gr\'afica y curvas de nivel de $f(x,y)=y^2-x^2$.}
\end{figure}
\end{document}
我不喜欢 处的图像z=1
。有没有一种方法可以让网格z=1
看起来像轮廓线?(不添加轮廓线z=1
)