使用 \pgfkeysvalueof 会导致“尺寸太大”

使用 \pgfkeysvalueof 会导致“尺寸太大”

正如标题所述,我遇到了使用\pgfkeysvalueof导致“尺寸太大”错误的问题。这是一个 MWE:

\documentclass{standalone}

\usepackage{pgfplots}
\pgfplotsset{compat=newest, samples=200}

\begin{document}
\begin{tikzpicture}
\begin{axis}[%
    xmin=-2, xmax=2,
    ymin=-2, ymax=2,
    xtick={\pgfkeysvalueof{/pgfplots/xmin},...,\pgfkeysvalueof{/pgfplots/xmax}},
    ytick={\pgfkeysvalueof{/pgfplots/ymin},...,\pgfkeysvalueof{/pgfplots/ymax}},
    ]
\addplot[domain=-2:2, smooth, blue, thick]{x^2};
\end{axis}
\end{tikzpicture}
\end{document} 

奇怪的是,这个错误只发生在我的 Macbook 上,而对 iMac 来说这不是问题。两台机器都安装了 Mactex2016,只是 pgfplots 的版本不一样。

tlmgr info pgfplotsMacbook 上的 Terminal.app的输出:

package:     pgfplots
category:    Package
shortdesc:   Create normal/logarithmic plots in two and three dimensions
longdesc:    ....
installed:   Yes
revision:    41838
sizes:       src: 993k, doc: 16189k, run: 3521k
relocatable: No
cat-version: 1.14
cat-date:    2016-08-11 04:56:10 +0200
cat-license: gpl3
cat-topics:  graphics-plot pgf-tikz
cat-related: pst-plot pgfplotstable
collection:  collection-pictures

在 iMac 上:

package:     pgfplots
category:    Package
shortdesc:   Create normal/logarithmic plots in two and three dimensions
longdesc:    ...
installed:   Yes
revision:    40966
sizes:       src: 901k, doc: 15645k, run: 3429k
relocatable: No
cat-version: 1.13
cat-date:    2016-01-07 22:13:11 +0100
cat-license: gpl3
cat-topics:  graphics-plot pgf-tikz
cat-related: pst-plot pgfplotstable
collection:  collection-pictures

如果我通过 手动设置刻度xtick={-2,...,2}, ytick={-2,...,2},它在我的 Macbook 上运行时也不会出现任何错误。这是一个已知错误还是有办法处理它?

编辑:Macbook 上的 pgfplots 版本似乎是最新版本,至少tlmgr update --all没有列出任何可用的更新。如果我将较旧的 pgfplots 1.13 从 iMac 复制到 Macbook,则上述 MWE 运行时不会出现错误。

相关内容