I am working on my thesis, and need to have the references in APA style. The bibliography is generated correctly, but the in text citation are not appearing. All that shows up is "[]".
The main section of my code is basically:
\documentclass[12pt,oneside]{report}
\usepackage{byustyle}
\usepackage{url}
\usepackage{apacite}
\AtBeginDocument{\urlstyle{APACsame}}
\begin{document}
\include{chapters/intro}
\include{chapters/background}
\include{chapters/starCCM}
\include{chapters/testing}
\include{chapters/starNX}
\include{chapters/results}
\include{chapters/conclusion}
% REFERENCES
\cleardoublepage
\bibliographystyle{apacite}
\bibliography{sources}
% APPENDICES
\appendix
\include{appendix/appendixa}
\include{appendix/appendixb}
\end{document}
Within the chapters I do in text citations as \cite{citation1}
Is there something I'm missing for the APA style?
\inputinstead of\include? – Romain Picot Oct 14 '15 at 06:17