我正在尝试使用以下代码绘制抛物面 z = x^2+y^2+2:
\documentclass[12pt]{article}
\usepackage{pgfplots}
\usetikzlibrary{3d}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[view={135}{10},axis lines = middle]
\addplot3[surf] (x,y,x^2+y^2+2);
\end{axis}
\end{tikzpicture}
\end{document}
然而,pgfplot 似乎忽略了 z 偏移 2:
我尝试了各种方法但都没有成功,我的抛物面卡在原点。
任何帮助将不胜感激