
次のドキュメント構造を検討してください。
Project
├── Sections
│ ├── section1.tex
│ └── section2.tex
└── main.tex
ファイルの内容は次のとおりです。
コンテンツのmain.tex
\documentclass{article}
\begin{document}
\input{Sections/section1.tex}
\input{Sections/section2.tex}
\end{document}
コンテンツのsection1.tex
\section{Section 1}
bla bla bla
コンテンツのsection2.tex
\section{Section 2}
bla bla bla
質問:コンパイル中にコンピュータ リソースを節約するためにファイルsection1.tex
とをsection2.tex
別々にコンパイルし、コンパイルされたバージョンsection1.tex
とをファイルsection2.tex
に追加することは可能ですかmain.tex
?