考虑以下文档结构:
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