I am about to start writing my thesis in latex, but seem to have some trouble implementing bibliography. In the simple document below, I am just practicising the basics. But I seem to keep failing at implementing bibliography in the document. I keep getting the (blue colored) errors 'Citation Schoen2013 on page 6 undefined', 'Empty bibliograph' and 'there were undefined references'. I created a document 'literature.bib' in notepad++ and saved in the folder 'bib'. The .bib document has the content below. Any ideas?
@article{schoen2013,
author = {Torsten Schoen and Co Author},
title = {Ten things you better not say to your wife},
journal = {Optimizing Husbands},
volume = {21},
year = {2013},
pages = {85--91},
}
\documentclass[a4paper,12pt]{report}
\usepackage{graphicx}
\usepackage{biblatex}
\usepackage{algorithm}
\addbibresource{bib/literature.bib}
\begin{document}[a4paper,12pt]
\chapter*{Declaration}
\chapter*{Abstract}
\chapter*{List of abbrevations and symbols}
\tableofcontents
\chapter{Introduction}
\section{Insurance industry}
\includegraphics{fig/circle}
\section{IBNR Claims and Claims Reserving}
\section{Link with GLM}
We refer to \cite{schoen2013}
\section{Robustification and Problems}
\section{Applications}
\chapter{Body}
\chapter{Conclusion}
\printbibliography
\end{document}
biber? – Torbjørn T. Mar 22 '15 at 11:30pdflatex test,biber test,pdflatex test,pdflatex test). How Biber is run depends on your editor, see the second question I linked to there. You can always use the command line directly. – moewe Mar 22 '15 at 12:08