我正在使用matlab2tikz
它来生成tikz
图形代码。当使用下面的图形代码编译文档时,我得到了一个与轴标签 y 和 z 重叠的图形。
以下是我得到的信息:
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage{pgfplots}
\newlength\figureheight
\newlength\figurewidth
\begin{document}
\begin{figure}
\setlength\figureheight{6cm}
\setlength\figurewidth{6cm}
\begin{tikzpicture}
\begin{axis}[%
view={45}{-30},
width=\figurewidth,
height=\figureheight,
scale only axis,
xmin=0, xmax=10,
xlabel={x},
ymin=0, ymax=10,
ylabel={y},
zmin=0, zmax=10,
zlabel={z},
axis lines*=left]
\addplot3 [
color=red,
only marks,
mark=o,
mark options={solid}
]
coordinates{
(1,1,1)(2,2,2)(3,3,3)(4,4,4)(5,5,5)(6,6,6)(7,7,7)(8,8,8)(9,9,9)(10,10,10)
};
\end{axis}
\end{tikzpicture}%
\end{figure}
\end{document}
有办法解决吗?