每章末尾的参考书目

每章末尾的参考书目

晚上好,

我需要你的帮助,因为我花了很多时间在每章末尾列出参考书目,但到现在都失败了。事实上,我正在写我的硕士论文,论文有三个章节,每个章节的参考书目都不同。所以我定义了三个不同名称的 bib 文件(例如,,bibch1),并在每个文件内放置相应的参考文献。在每章的末尾,我都写道:bibch2bibch3

\addcontentsline{toc}{chapter}{\numberline{}Bibliography}
\bibliographystyle{apalike-fr}
\bibliography{bibch1} %bibch2 at the end of second chapter etc..
\markright{\MakeUppercase{Bibliographie}}

主要的 tex 文件如下:

\documentclass[a4paper,12pt]{book}

\usepackage[T1]{fontenc}                
\usepackage[latin1]{inputenc}           
\usepackage[english]{babel}         
\usepackage[dvips]{epsfig}              
\usepackage{amsmath}                    
\usepackage{amssymb}    

\begin{document}

\input{chapter1}

\input{chapter2}

\end{document}      

您能否帮我看看缺少了什么,或者给我一个简单的例子来解决这个问题。非常感谢

相关内容