正如標題已經所說,我遇到的問題是使用\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 pgfplots
Macbook 上 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 運行時不會出現錯誤。