I'm using the bibunits package to add references at the end of each chapter of my PhD. After latexing, and bibtexing, and latexing again twice, the list of cited references appears at the end of each chapter, but each \cite commands still produce a [?] in the typeset text, indicating that the reference can't be found.
The preample of my document (thesis.tex) looks like:
Code: Select all
\usepackage{bibunits}
......
\begin{document}
\bibliographyunit[\chapter]
\defaultbibliography{bibliography/articles,bibliography/extras}
\maketitle
Code: Select all
\chapter{Title of chapter 1}
\label{chp:chapter1}
\input{chapters/chapter1}
\putbib
Code: Select all
\section{Section heading 1}
A sentence with a reference at the end \cite{aref2008}.
Another sentence with a reference at the end \cite{anotherref2008}.
latex thesis1
bibtex bu.aux
bibtex bu1.aux
...
bibtex buN.aux
latex thesis 1
latex thesis 1
Any ideas what I'm doing wrong? How can I get my references to appear inline?
Many thanks for your help.
Best wishes,
complext