答案1
LaTeX 文档只能有一条\documentclass
指令、只有一组\begin{document}
和\end{document}
指令、只有一条\maketitle
指令等等。这就是为什么不可能直接将PR1.tex
其全部包含在中main.tex
。
为了取得一些进展,我建议您首先创建两个新的 tex 文件,例如,PR1preamble.tex
和,PR1body.tex
并用 PR1.tex 的序言材料和正文材料填充它们,PR1.tex``. Next, change
使其看起来像这样:
\documentclass{article}
\input PR1preamble
\begin{document}
\maketitle
\input PR1body
\end{document}
请验证这个新的、精简的驱动程序文件是否能正确编译。
最后,编辑文件main.tex
,使其包含两个\input
语句,而不是一个:
\documentclass{article}
\input PR1preamble
% other preamble instructions
\begin{document}
\maketitle
% some stuff
\input PR1body
% more stuff
\end{document}
PR1preamble.tex
如果 的材料与 的序言之间存在重叠(甚至冲突)main.tex
,则需要确定要保留哪些材料以及要删除哪些材料。