
Betrachten Sie die folgende Dokumentstruktur:
Project
├── Sections
│ ├── section1.tex
│ └── section2.tex
└── main.tex
Und hier ist der Inhalt der Dateien:
Inhaltvonmain.tex
\documentclass{article}
\begin{document}
\input{Sections/section1.tex}
\input{Sections/section2.tex}
\end{document}
Inhaltvonsection1.tex
\section{Section 1}
bla bla bla
Inhaltvonsection2.tex
\section{Section 2}
bla bla bla
Frage:Ist es möglich, die Dateien section1.tex
und section2.tex
separat zu kompilieren, um während der Kompilierung Computerressourcen zu sparen und die kompilierten Versionen von section1.tex
und section2.tex
zur main.tex
Datei hinzuzufügen?