I am writing my PhD thesis and my supervisor has asked me to append the references at the end of each chapter. However, the template (which I am using) is unable to do so. I have downloaded this template, somewhere from the Internet.
I am using \printbibliography at the end of the chapters but still I can't see any references at the end. As a MWE (Thesis_Template), I am using two chapters with one common reference (Bannerman_2009) and a different reference (Chan05). I can see their proper citation in the text (Please see pg. no. 17 and 19 in main.pdf) but they are not being listed at the end. I am very worried because my professor want chapters for the review but my thesis is still not in the specified format. I am using MiKTeX 2.9 with TeXstudio for compiling the code.
Please explain elaborately, where I am making a mistake or there is some specific order of compiling the code, which I have to follow. Looking forward to your kind and prompt help.
My files are as follows:
%%% Main.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}
%%% Chapter1.tex %%%
\chapter{Example One}
This is a part of chapter one.~\cite{Bannerman_2009}
\printbibliography[heading=thesisChapterBib]
%%% Chapter2.tex %%%
\chapter{Example Two}
Chapter with Nunc vitae placerat ligula.~\cite{Bannerman_2009, Chan05}
\printbibliography[heading=thesisChapterBib]
%%% main.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}
}
\documentclass{...}and ending with\end{document}. – Guido Apr 20 '13 at 05:34pdflatex,biber, `pdflatex. – Guido Apr 20 '13 at 05:42biblatexdo you use? You can add the command\listfilesto print a File List at the end of your log file. Do you get any errors? You example works fine for me. – Marco Daniel Apr 20 '13 at 09:08How can I check the version of biblatex? I am using MikTex 2.9.
– user29337 Apr 20 '13 at 09:38arara. As a MikTeX user you have to install arara manually. The order of compilation ispdflatex->biber->pdflatex->pdflatex– Marco Daniel Apr 20 '13 at 09:51What is the use of installing arara? Can you please throw some light on it.
– user29337 Apr 20 '13 at 10:12% arara: pdflatex,% arara: biber,% arara: pdflatex,% arara: pdflatexand all needed compilations are done by one compiling klick ofarara– Marco Daniel Apr 20 '13 at 10:24I also have Ubuntu 12.10 so please tell me the easiest way by which I can get the output. arara doesn't seems to work in my case (It might be a case that I am unable to properly install it).
– user29337 Apr 20 '13 at 18:40