如何在论文中每章末尾安排参考文献?

如何在论文中每章末尾安排参考文献?

我正在写博士论文,我的导师要求我在每章末尾附上参考文献。但是,我正在使用的模板无法做到这一点。我从互联网上的某个地方下载了这个模板。

\printbibliography我在章节末尾使用了,但仍然看不到末尾的任何参考资料。作为 MWE (论文模板),我使用了两个章节,一个共同的参考文献 (Bannerman_2009) 和一个不同的参考文献 (Chan05)。我可以在文本中看到它们的正确引用(请参阅第 17 和 19 页main.pdf),但它们没有列在最后。我很担心,因为我的教授想要章节进行审查,但我的论文仍然不是指定的格式。我使用 MiKTeX 2.9 和 TeXstudio 来编译代码。

请详细解释我哪里犯了错误,或者编译代码时需要遵循一些特定的顺序。期待您的帮助。

我的文件如下:

%%% 主.tex %%%

\documentclass[12pt,twoside]{report}
\usepackage{hyperref}
\usepackage[style=numeric- comp,bibstyle=numeric,hyperref=true,backref=false,refsection=chapter,sorting=none,abbreviate=true]{biblatex}
\bibliography{main}%%% the bibtex file
\defbibheading{thesisChapterBib}{\section{References}}
\begin{document}
\include{Chapter1}
\include{Chapter2}
\appendix
\end{document}

%%% 第 1 章.tex %%%

\chapter{Example One} 
This is a part of chapter one.~\cite{Bannerman_2009}
\printbibliography[heading=thesisChapterBib]

%%% 第二章.tex %%%

\chapter{Example Two} 
Chapter with Nunc vitae placerat ligula.~\cite{Bannerman_2009, Chan05}
\printbibliography[heading=thesisChapterBib]

%%% 主.bib %%%

@ARTICLE{Bannerman_2009,
   author = {Bannerman, M. N.},
   title = {Discrete potentials are good},
   journal = {J. M. B.},
   year = {2009},
   volume = {1},
   pages = {1-100},
   owner = {mjki2mb2},
}
@ARTICLE{Chan05,
   author = {Chan, R.H. and Chung-Wa Ho and Nikolova, M.},
   title = {Salt-and-pepper noise removal by median-type noise detectors and
    detail-preserving regularization},
   journal = {Image Processing, IEEE Transactions on},
   year = {2005},
   volume = {14},
   pages = {1479-1485},
   number = {10},
   doi = {10.1109/TIP.2005.852196},
   issn = {1057-7149}
}

相关内容