我正在尝试用 绘制 3D 图pgfplots
。我从文档中的一个示例开始:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage{pgfplots}
% \usepackage{3dplot}
\begin{document}
%
\begin{figure}[!h]
\begin{tikzpicture}
\begin{axis}
% this yields a 3x4 matrix:
\addplot3+[mesh] coordinates {
(0,0,0) (1,0,0) (2,0,0) (3,0,0)
(0,1,0) (1,1,0.6) (2,1,0.7) (3,1,0.5)
(0,2,0) (1,2,0.7) (2,2,0.8) (3,2,0.5)};
\end{axis}
\end{tikzpicture}
\end{figure}
%
\end{document}
当我查看文件 .log 时,我读到:
!软件包 pgfkeys 错误:我不知道密钥“/tikz/mesh”,我将忽略它。也许你拼错了。
我已经重新安装了 pgfplots 包,结果是一样的。
答案1
该示例与新版本的pgfplots
和配合良好tikz
。