在 3dplot 中使轴更长

在 3dplot 中使轴更长

如何在不影响绘图本身的情况下调整用 pgfplots/TikZ 绘制的绘图中轴的长度?

答案1

这里有几种选择:使用xmaxymaxzmaxxmin、键或键系列、、、 。一个小例子(该示例是 2Dymin的,但同样的想法也适用于 3D 图):zminenlarge limitsenlarge x limitsenlarge y limitsenlarge z limits

\documentclass{article}
\usepackage{pgfplots}

\begin{document}

\begin{tikzpicture}
\begin{axis}[axis lines=middle]
\addplot+[no marks,domain=-2:2] {x};
\end{axis}
\end{tikzpicture}

\begin{tikzpicture}
\begin{axis}[
  axis lines=middle,
  xmax=6,
  ymax=6,
  xmin=-6,
  ymin=-6
  ]
\addplot+[no marks,domain=-2:2] {x};
\end{axis}
\end{tikzpicture}

\begin{tikzpicture}
\begin{axis}[
  axis lines=middle,
  enlarge x limits=3,
  enlarge y limits=3
  ]
\addplot+[no marks,domain=-2:2] {x};
\end{axis}
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容