I am writing my master's thesis using LaTex (specifically on a Mac with TeXShop and Mendeley to generate my .bib file) and I would like to use this Masters/Doctoral Thesis template but I am encountering some problems with the bibliography and in-text citations. All I am trying to accomplish is to use APA-style citations both in the bibliography and for the in-text citations - they should look like this -> (Author, Year). However, using this template the bibliography doesn't print in the PDF and I can only manage to get the in-text citations to look like (Author Year) or (Author; Year) -> it should be a comma between the author and year.
I have looked through some introductions to LaTex and tried using the "natbib" package and simple commands like this at the beginning or end of the main.tex file (I tried in both locations):
Code: Select all
\bibliography{name}
\bibliographystyle{apalike}
Code: Select all
\usepackage[backend=biber,style=apa,natbib=true]{biblatex}
\DeclareLanguageMapping{english}{english-apa}
\addbibresource{example.bib}
Code: Select all
Runaway argument?
{\376\377\000
./main.tex:92: File ended while scanning use of \@@BOOKMARK.
<inserted text>
\par
l.92 \begin{document}
?
Thanks everyone!