在LaTex 中给每章插入参考文献

  1. 在preamble中加入以下代码
\usepackage[square,numbers,sectionbib]{natbib}
\usepackage{chapterbib}
  1. 在main.tex中加入以下代码
\include{Subdir\Chapter01}
  1. 在每一章的.tex文件末尾添加以下代码
\bibliographystyle{plainnat}
\bibliography{../Bibliography}

可以有多个Bibliography文件,但是要确保路径zhengque

  1. After running pdflatex on your file, you should have a Chapter01.aux-file in the Subdir-Directory. 在文件夹内打开命令行窗口,运行下面的语句:
bibtex Chapter01
  1. afterwards running pdflatex twice should give you a nice document with Bibliographies at the end of each chapter.

参考: http://wiki.davidhaberthuer.ch/latex#chapterbib

你可能感兴趣的:(在LaTex 中给每章插入参考文献)