有关 pgf 图的帮助

有关 pgf 图的帮助

我正在尝试使用 latex 的 pgfplot 工具创建一个图。我想绘制 $z=\sin(x)\sin(y)$ 来创建一个如下图在此处输入图片描述 因此,我只是模仿图片中提供的代码,并附上前言。

    \begin{frame}
    \begin{tikzpicture}
    \begin{axis}
    \addplot3[surf,domainin=0:360, sample=40, shader=none] 
    {sin(x)*sin(y)};
    \end{axis}
    \end{tikzpicture}
    \end{frame}

但我越来越我的结果。我知道这是缩放的问题,但我尝试包含ymin, ymax, xmin, xmax值,甚至结果也很糟糕。任何帮助我都会很感激。

答案1

这有效(你有domainin并且它是domain;你有sample并且它是samples,并且我抑制了shader):

\documentclass{beamer} 
\usepackage{pgfplots}

\begin{document}

\begin{frame}
    \begin{tikzpicture}
    \begin{axis}
    \addplot3[surf,domain=0:360, samples=40] 
    {sin(x)*sin(y)};
    \end{axis}
    \end{tikzpicture}
\end{frame}

\end{document}

在此处输入图片描述

相关内容