main.tex
我已经包含了这样的文件:
\documentclass{book}
\begin{document}
\include{chapter1}
\end{document}
如何chapter1.tex
像这样包含子文件(或递归包含):
\chapter{chapter1}
\include{subsection}
答案1
在您的main.tex
,您可以使用\include{}
或\input{}
,请参阅此关于他们的区别的问题。因为您不能\include
以嵌套的方式使用,所以您必须使用\input
已经包含(或输入)的文件。
因此,您必须将中的更改\include
为。\input
chapeter1.tex