我想减少使用pgfplots
我想要一个 PDF 文件,这样我就可以按页包含它们graphicx
。
课程multi
选项standalone
类(我用来写情节的类)看起来很有希望,但不是把情节当作一个单一的堵塞,multi
将情节视为一个单一的页. (我认为这是multi
的目的)。
例如,我希望实现类似的结果此 PDF 文件,但使用 pgfplots (来自《确定性分布式算法课程》经过尤卡·索梅拉)。
MWE 代码:
% Remove the `multi` option and the code in between the
% comment bars to achieve the `standalone` default output.
\documentclass[multi]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.7}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot {x^2};
\end{axis}
\end{tikzpicture}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\clearpage
\begin{tikzpicture}
\begin{axis}
\addplot {x^2};
\end{axis}
\end{tikzpicture}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
MWE 输出:
答案1
如果你使用
\documentclass[tikz]{standalone}
而不是multi
每页只显示一个情节。
你也可能对此有兴趣
\usetikzlibrary{external}
\tikzexternalize[mode=list and make]