突然,我的文档中的一些图表发生了变化。我完全不知道发生了什么变化,但截至今天,一些创建的图表的边界框计算pgfplots
变得混乱。我的 MWE 如下所示:
\documentclass[tikz]{standalone}
\usepackage{tikz,pgfplots}
\pgfplotsset{compat=1.7}
\usetikzlibrary{pgfplots.groupplots}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[
group style={group name=my plots, group size=1 by 1}]
\nextgroupplot[xmin=0.05,]
\addplot {0};
\end{groupplot}
\end{tikzpicture}
\end{document}
并且输出结果不符合预期,左侧出现大量空格:
这只会在与 结合的 groupplot 中发生xmin=
,而不会在普通图中发生,但文档本身并没有改变。