pgfplots 中的 3D 轴问题

pgfplots 中的 3D 轴问题

我有 texlive 2012,并且用 pgfplots 绘制了一条三维曲线。这不是问题。轴的出现方式看起来不太合适。在代码中我指出 ymax = 1.5,但图中显示 y 的最大值是 8。ymin 也发生了类似的事情。此外,我的标题空间也存在问题。有人能给我一些建议吗?

\documentclass{memoir}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[scale=1.5,axis equal,view={95}{50},
  axis lines=center,
  axis on top,
  xmin=-3.5,xmax=3.5,
  ymin=-0.5,ymax=1.5,
  zmin=-3,zmax=3,
  xlabel={$x$},ylabel={$y$},zlabel={$z$},
  every axis x label/.style={
  at={(axis cs:\pgfkeysvalueof{/pgfplots/xmax},0,0)},
  xshift=-0.6em,yshift=-0.1em                 
  },
  every axis y label/.style={
  at={(axis cs:0,\pgfkeysvalueof{/pgfplots/ymax},0)},
  xshift=0.6em,yshift=-2ex            
  },
  every axis z label/.style={
  at={(axis cs:0,0,\pgfkeysvalueof{/pgfplots/zmax})},
  xshift=-0.2em,yshift=1em           
  }
  ]
  \addplot3[blue,domain=-3:3,samples y=0] ({x},{x^2/(1+x^2)},{x^3/(1+x^2)});
  \legend{$\Ran f$}
\end{axis}
\end{tikzpicture}
\end{document}

(x,x²/(1+x²),x³/(1+x²)) 图形

相关内容