【发布时间】:2011-07-08 07:40:28
【问题描述】:
我想创建多个文档(运行 pdflatex 后输出为 PDF),其来源来自一个文件。
例子:
\documentclass{article}
\begin{document}
This text will appear in the first PDF.
\end{document}
\begin{document}
This text will appear in the second PDF.
\end{document}
这将特别有用,因为:
- 我可以将所有内容保存在一个文件中,并带有一个一致的序言。
- 我可以使用
ifthen或其他循环来自动生成各种替代形式的文档。
【问题讨论】: