\pgfplotsset{compat=1.13} 与 \pgfplotsset{compat=1.15}

\pgfplotsset{compat=1.13} 与 \pgfplotsset{compat=1.15}

在 mac OS X El Capitan V 10.11.6 上使用 TexShop 3.92

1.13 可以工作,但 1.15 不行?错误:选择键 'p' 中的选择 '1.15' 未知

该怎么办?

梅威瑟:

\documentclass{scrartcl}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\begin{document}
\begin{tikzpicture}
 \begin{axis}[scaled ticks=false,]
    \addplot coordinates {
        (20000,0.0005)
        (40000,0.0010)
        (60000,0.0020)    };
 \end{axis}
\end{tikzpicture}
\end{document}

答案1

compat数字指的是pgfplots软件包的版本号。通过设置,compat您可以决定pgfplots使用该特定版本的设置/功能。

如果1.15不起作用,说明你没有pgfplots安装 1.15 版本。该compat设置无法预测未来。

只需使用1.13,或可能尝试1.14

如果你想要更新pgfplots,你可以使用 TeX Live Utility 来执行此操作,请参阅我如何更新我的 TeX 发行版?,假设您使用的是 MacTeX。

相关内容