하나를 다른 하나 안에 중첩하는 것이 불가능하다는 것을 알고 있지만 \include
은 어떻습니까 \input
? 다음과 같은 것이 가능합니까?
\documentclass{article}
\begin{document}
\include{file1}
\end{document}
그런 다음 file1.tex
:
\section{samplesection}
\input{file2}
안에 file2.tex
;
\section{samplesection2}
Hello
답변1
Kopka와 Daly의 말을 인용하면,LaTeX 가이드, 4판(2004), p. 207:
\include
명령은 중첩될 수 없습니다. 기본 처리 파일에만 나타날 수 있습니다. 그러나\input
명령은 d 파일 내에서 제공될 수 있습니다\include
.