如何只編譯包含的tex檔?

如何只編譯包含的tex檔?

假設我們有一個大的主 .tex 檔。我希望使用命令 \include 將所有其他 .tex 檔案匯入到郵件 .tex 檔案中。我聽說為了節省時間,實際上可以只編譯包含的特定檔案。但是,如果包含的 .tex 檔案沒有文件類別或沒有正確的設定來自行排版,我該怎麼辦?

答案1

您可以使用\includeonly命令:

\documentclass{book}
\includeonly{nextfile}
\begin{document}
  \include{somefile}
  \include{someotherfile}
  \include{nextfile}
\end{document}

現在只有nextfile將被編譯,但所有數字和其他交叉引用都會正確顯示。

相關內容