\documentclass[12pt]{report}
\usepackage{graphics}
\usepackage[round]{natbib}
\title{\textit{The Role of The Developmental Transcription Factor Brachyury in the development of Colorectal Cancer}}
\author{Jason Saunders Williams}
\bibliographystyle{plain}
\begin{document}
\begin{figure}[t]
\centering
\includegraphics{Logo.png}
\end{figure}
\maketitle
\printacronyms[include-classes=abbrev,name=Abbreviations]
\tableofcontents
\listoffigures
\chapter{Introduction}
Cancer \cite{Aramaki2013}
\chapter{Materials and Methods}
\chapter{Results}
\chapter{Discussion}
\bibliographystyle{plain}
\bibliography{BibTex.bib}
\end{document}
The error message that I get is:
line 44 Citation `Aramaki2013' on page 4 undefined
line 3 Empty `thebibliography' environment
line 1 There were undefined citations.
The BibTeX file is in the same folder as the latex file. Really don't know what I'm doing wrong.
Any help would be appreciated.
\bibliography{<filename without extension>}i.e. drop the.bib. You need to runbibtexafter compiling and then compile at least twice more. – cfr Aug 30 '16 at 10:15.bibfile and remove the graphics stuff from your example code since we don't haveLogo.png. – cfr Aug 30 '16 at 10:17