单独编译 LaTeX 章节并将编译后的版本包含在主文档中

单独编译 LaTeX 章节并将编译后的版本包含在主文档中

考虑以下文档结构:

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.texsection2.texmain.tex

相关内容