问题

问题

我编译

\documentclass{standalone}
\begin{document}
 Test1
\end{document}

我确实得到了我所期望的。 测试1

但如果我这么做

\documentclass[multi]{standalone}
\begin{document}
 Test1
 \newpage
 Test2
\end{document}

Test1我得到了两个带有微小和的大页面Test2

测试2

问题

那么,如何才能获得两个裁剪的 PDFTest1并将其合并Test2到同一个编译文件中?

答案1

您必须将每个“页面”封闭在一个环境中:

\documentclass[multi,crop,border=2]{standalone}

\standaloneenv{my}

\begin{document}

\begin{my}
 Test1
\end{my}

\begin{my}
 Test2
\end{my}

\end{document}

在此处输入图片描述

相关内容