编译时 Fillbetween 不显示

编译时 Fillbetween 不显示

下面是一个脚本的简单示例,它从文件中读取数据,然后填充 x 轴下方的绘图和 x 轴本身定义的区域。输入文件可以在这里找到:

http://expirebox.com/download/0055b781a018392f326c55e6946707ca.html

问题是它在编译时不显示阴影,并且它没有返回任何错误来表明存在问题。我使用 LuaLaTex,但尝试过 XeLaTex 和 PDFLaTex,都没有显示阴影。是我定义路径的方式有问题还是数据本身有问题?

\documentclass[preview=true]{standalone}

\usepackage{tikz}
\usepackage{pgfplots}
\usepgfplotslibrary{fillbetween}
\pgfplotsset{compat=1.12}

\begin{document}
\begin{tikzpicture}[baseline]
    \begin{axis} [name=mainplot,clip mode=individual,
        %width=\textwidth,
        axis y line=left,
        y axis line style=<->,
        x axis line style=->,
        xlabel={x},
        ylabel={y},
        xtick align=inside,
        ytick align=inside,
        axis x line=middle,
        xmin=0,
        xmax=8,
        ymax=0.7,
        ytick={-0.1,0,...,0.8},
        ymin=-0.1,
        minor y tick num =3,
        minor x tick num =1,
        restrict x to domain=/pgfplots/xmin:/pgfplots/xmax,
        ]
        \addplot[name path=A,blue,thick] table[x=x,y=w] {input_file.txt};
        \path[name path=B](\pgfkeysvalueof{/pgfplots/xmin},0)--(\pgfkeysvalueof{/pgfplots/xmax},0);

        \addplot fill between[of=A and B,
                            split,
                            every segment no 1/.style=
                            {pattern=north east lines},
                            every segment no 2/.style=
                            {fill=none},
                            ];
    \end{axis}
\end{tikzpicture}
\end{document}

输出如下所示;目标是阴影化 x 轴下方并由绘图限定的区域(即 0 -> ~3)。

提前谢谢了

雪人

从数据文件填充

相关内容