我有点困惑应该如何enlarge y limits
工作。
我试图在图表上方和下方留出一些空间。这是一个通用示例,但我最终会尝试将其嵌入到宏中,因此我无法明确使用ymax
和ymin
,因为我事先不知道将绘制什么。
目前,结果图太接近 y 极限,看起来不太好(在我看来)。
我创建了这个[mwe]https://www.latex4technics.com/?note=zzvrzs。
但它似乎并没有真正扩大 y 限制(我认为使用该命令和不使用enlarge y limits
命令没有区别)。
\begin{tikzpicture}
\begin{axis}[
enlarge y limits=true,
restrict x to domain=0:10, xmax=10, xmin=-1,
x=1cm,
y=1cm,
axis x line = middle,
axis y line = middle,
axis line style = thick,
major tick style=black,
minor tick num=1,
>=stealth,
xticklabels=,
yticklabels=,
]
\addplot[thick,domain=0:10,color=blue] {-3*2.71828^(-x/2)+1};
\node[fill=blue,circle,scale=0.2,color=blue] at (0,-2) {$ $};
\node[color=blue, anchor=east] at (axis cs:0,2) {$b$};
\node[below left] at (axis cs:0,0) {$0$};
\node[below] at (axis cs:9.8,-0.1) {$t$};
\node[left] at (axis cs:-0.1,3.8) {$label$};
\end{axis}
\end{tikzpicture}
\end{document}