I am trying to incorporate a bilbiography with the use of subfiles, but I don't get it to work the way I want to.
A summary of what I want is to work in subfiles, where I can use the
\cite{}
command to cite a reference from Bibliography.bib. However, I don't get it to work properly. I am probably forgetting something very obvious, but I don't seem to see what. What I have is (in short)Report.tex
Code: Select all
\documentclass{report}
\usepackage{a whole lot of them, including the subfiles package}
\begin{document}
\a custom title page
\abstract, table of contents, this works fine as it should
\subfile{Theory/Theory.tex}
\subfile{Results/Results.tex}
\bibliographystyle{ieeetr}
\bibliography{References/Bibliography.bib}
\appendix
\subfile{Appendix/AppendixA.tex}
\end{document}
Code: Select all
\documentclass[../Report.tex]{subfiles}
\graphicspath{Theory/}
\begin{document}
\chapter{Theory}
\section{Theory section 1}
This is a test to see if this citation works \cite{Brink}.
\end{document}
Code: Select all
\begin{thebibliography}{10}
\bibitem{Brink}
Derperdiederp Brink,
\emph{Electric thingies},
Master Thesis, University of something, 2012.
\end{thebibliography}