如何在不影响绘图本身的情况下调整用 pgfplots/TikZ 绘制的绘图中轴的长度?
答案1
这里有几种选择:使用xmax
、ymax
、zmax
、xmin
、键或键系列、、、 。一个小例子(该示例是 2Dymin
的,但同样的想法也适用于 3D 图):zmin
enlarge limits
enlarge x limits
enlarge y limits
enlarge 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}