如何在 latex 的包含文件中包括子 tex 文件

如何在 latex 的包含文件中包括子 tex 文件

main.tex我已经包含了这样的文件:

\documentclass{book}

\begin{document}
\include{chapter1}
\end{document}

如何chapter1.tex像这样包含子文件(或递归包含):

\chapter{chapter1}

\include{subsection}

答案1

在您的main.tex,您可以使用\include{}\input{},请参阅此关于他们的区别的问题。因为您不能\include以嵌套的方式使用,所以您必须使用\input已经包含(或输入)的文件。


因此,您必须将中的更改\include为。\inputchapeter1.tex

相关内容