我正在尝试创建 xy 平面的简单图表,其中 y>-1 区域被阴影化。我搜索了这个论坛,试图找到一种方法来做到这一点,并且我(几乎)使用这个代码找到了一个解决方案:
\begin{tikzpicture}
\begin{axis}[
axis lines=middle,
ymin=-5,
ymax=5
]
\addplot[name path=line1,dashed] {-1};
\addplot[name path=line2,draw=none] {5};
\addplot[gray!15] fill between[of=line1 and line2];
\end{axis}
\end{tikzpicture}
为什么会出现轴不可见的情况(并且轴末端的箭头消失了)?我该如何解决这个问题?
答案1
您可以使用以下axis on top
选项:
代码:
\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{fillbetween}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines=middle,
ymin=-5,
ymax=5,
axis on top,
]
\addplot[name path=line1,dashed] {-1};
\addplot[name path=line2,draw=none] {5};
\addplot[gray!15] fill between[of=line1 and line2];
\end{axis}
\end{tikzpicture}
\end{document}