使用 addplot3 进行 pgfplots 的一些简单曲面绘制无法编译

使用 addplot3 进行 pgfplots 的一些简单曲面绘制无法编译

pgfplot我在使用和编译一些非常简单的表面绘制时遇到了麻烦addplot3,例如,请参阅所附代码,我一直收到错误消息\begin{axis} on input line 8 ended by \end{document},如果我注释掉这两行addplot3,那就没问题了,所以我猜这不是 Ubuntu 上的 Tex-live 的问题。谷歌搜索过,但似乎没有人遇到类似的问题。有什么想法吗?

\documentclass{minimal}
\usepackage{pgfplots}
\begin{document}

\begin{tikzpicture}
\begin{axis}
\addplot3[surf,domain=0:10,samples=40, shader=interp]
{x*y};
\end{axis}
\end{tikzpicture}

\end{document}

答案1

在 Synaptic 存储库中找到的版本pgfplots已过时,使用 TUG 提供的安装程序安装 TeXlive 2011 可解决此问题。实际上建议使用 TUG 版本,因为它允许使用它来tlmgr更新系统。另请参阅

相关内容