避免多次运行辅助文件

避免多次运行辅助文件

我的主要文本结构如下;

主文本

 \input{preamble.tex}

 \begin{document}

 \include{ch1.tex} within ch1.tex => \bibliographystyle{agsm}, \bibliography{ch1.bib}

 \include{ch2.tex} within ch2.tex => \bibliographystyle{agsm}, \bibliography{ch2.bib}

 \include{ch3.tex} within ch3.tex => \bibliographystyle{agsm}, \bibliography{ch3.bib}

\end{document}

我的编译顺序:

xelatex => Main.tex

Bibtex => ch1.aux,Bibtex => ch2.aux,Bibtex => ch3.aux

xelatex 1 或 2 次。

在每章末尾正确地列出参考书目。

我的问题:

  1. 有没有其他方法可以编译它而不必运行每个章节的每个辅助文件?使用某种方法自动检测所有辅助文件并运行它们。
  2. 欢迎采用其他方式。

相关内容