关于大型 tex 文件的提示

关于大型 tex 文件的提示

我想为一本大约900页的数学书写一份解决方案手册。

我希望它包含所有练习的详细解决方案以及每个章节的总结。

该文件显然会很大。我很想听听有关处理这种大文件的任何提示,例如将其分成几个文件等...

答案1

基本上有两种可能性,都涉及拆分成几个文件

  1. \input{filename}使用命令包含每个文件
  2. \include{filename}使用命令包含每个文件

第二种方式总是添加分页符。

无论您采用哪种风格,我都会将大文件按逻辑分成几部分,例如章节或节,但不会分成小节。

请注意,您不能嵌套\include命令,在这种情况下,您必须\input在更深的层次结构中使用。

如果你只想测试某些部分,你可以使用\includeonly命令,比如

\documentclass{article}
%Starting stuff
\includeonly{section1,section6}%
\begin{document}
%Something to be done before formatting etc. of solutions
\include{section1}
\include{section2}
\include{section3}
\include{section4}
\include{section5}
\include{section6}
% Other stuff here
\end{document}

这将仅包含具有 section1 和 section6 的文件,尽管其他文件在语句中明确给出\include

还请查看一下包装filecontents

相关内容