我怎样才能改变我的图中的轴?

我怎样才能改变我的图中的轴?

我用从 sourceforge.net 复制的代码绘制了表面。我想更改给定的轴标签,因为无论如何,当将其合并到 tex 文档中时,该标签无法正确呈现。我希望我的轴能够描绘出所有点都低于 x=0 的事实。同样,如果我绘制

\addplot3[surf] {-x^2 - y^2}

我希望它显示所有点都在 z=0 以上。我咨询的 pgfmanual.pdf 到目前为止没有帮助。我还希望能够缩放图(增加或减少其大小)。

\documentclass[11pt,twoside]{report}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows, decorations.pathreplacing, matrix}
\usepackage{pgfplots}

\begin{document}
\begin{tikzpicture}
\begin{axis}

\addplot3[surf] {-x^2 - y^2};
\end{axis}
\end{tikzpicture}
\end{document}

答案1

希望您自己已经找到了解决方案。如果没有...

\documentclass[border=2pt]{standalone}
\usepackage{pgfplots}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}[
            % change the width of the plot
            width=7cm,
            % change the `zmin' value
            % (0 makes no sense here, because that is the maximum value
            %  of the given function. That is why I have chosen -10 here.)
            zmin=-10,
        ]
            \addplot3 [surf] {-x^2 - y^2};
        \end{axis}
    \end{tikzpicture}
\end{document}

该图显示了上述代码的结果

相关内容