PGFPlots 模式错误

PGFPlots 模式错误

我尝试编译这个例子如何在 pgfplot 条形图中结合填充和图案?回答这里的问题PGFplots ybar 模式未显示lualatex xelatex当我使用或 时,模式不会出现pdflatex;它只适用于latex+dvipdf。我有PGF 2.10PGFplots 1.8。这里有任何已知的错误和解决方法吗?

我尝试了这个代码:

\documentclass[12pt]{article}
\usepackage{pgfplots}
\usepackage{tikz}
\usetikzlibrary{patterns}


\begin{document}
\begin{tikzpicture}
\begin{axis}[ybar, samples=10, enlarge y limits=upper, ymin=0]
\addplot +[
    black,
    fill=yellow,
    postaction={
        pattern=north east lines
    }
]{rnd};
\end{axis}

\end{tikzpicture}
\end{document}

结果如下pdflatex

在此处输入图片描述

结果如下latex+dvipdf

在此处输入图片描述

出现的唯一警告是

Package pgfplots Warning: running in backwards compatibility mode (unsuitable t ick labels; missing features). Consider writing \pgfplotsset{compat=1.8} into y our preamble.

顺便说一句,我不确定,但在我的一次测试中,似乎如果我只有无条,它就会起作用。

相关内容