ustctug / ustcthesis

LaTeX template for USTC thesis
https://gradschool.ustc.edu.cn/column/65
LaTeX Project Public License v1.3c
1.63k stars 399 forks source link

无法使用\include插入章节 #290

Closed vonfzm closed 3 years ago

vonfzm commented 3 years ago

检查

编译环境

描述问题

把main.tex中的 \input{chapters/intro.tex} \input{chapters/floats.tex} \input{chapters/math.tex} \input{chapters/citations.tex} 中\input改成\include后对应章节就没了。直接把模板的改了一下也是这样。

zepinglee commented 3 years ago

8f7ab71 修复了同时使用 natbibchapterbib 宏包的问题,正确使用方法如下:

  1. natbibchapterbib 的加载顺序不重要。
  2. sectionbib 参数需要传给 natbib 而不是 chapterbib(见 natbib 文档 2.15 节)。
  3. 每章内容需要写到单独的 .tex 文件,在主文档中使用 \include 调用(不能用 \input),不带 .tex 后缀。
  4. 每章都要使用 \bibliographystyle\bibliography
  5. 编译时需要用 BibTeX 对每章的 .aux 文件进行编译,可以使用 latexmk 自动进行全部的编译过程。