I'm trying to print a bibliography for my masters thesis using bibLatex, however there are some discrepancies with the setup I'm using. for instance, the book bibliography entry prints the location before the place of publication, when it should be the opposite, the journal entry puts the journal in double quotations instead of a single quotations, etc.
I'm pretty new to Latex and I've been all over to start formatting my bibliography, so excuse me if I have made some mistakes in my setup but here it is
\documentclass[11pt, a4paper]{book}
\usepackage[backend=biber,
style=authoryear,
uniquename=false,
hyperref=auto,
date=year,
natbib=true,
url=false,
isbn=false]{biblatex}
\addbibresource{citations.bib}
\renewcommand*{\nameyeardelim}{\addcomma\space}
\defbibheading{bibliography}[\bibname]
\begin{document}
\include{Cover}
\begin{singlespace}
\cleardoublepage
\tableofcontents
\clearpage
\listoffigures
\clearpage
\listoftables
\clearpage
\include{Abstract}
\clearpage
\end{singlespace}
\pagenumbering{arabic}
\setcounter{page}{1}
\include{introduction}
\cleardoublepage
\include{literature_review}
\cleardoublepage
\include{methodology}
\cleardoublepage
\include{technical}
\cleardoublepage
\chapter{References}
\printbibliography[heading=bibliography]
\end{document}
I am using overleaf. On a side note I would welcome any resource that help me understand latex more, most of the resources I came across are either explains beginner knowledge it has become trivial for me now, or are too advanced for me to follow. thanks
biblatexquestions is the lovely https://tex.stackexchange.com/q/12806/. – moewe Jan 26 '22 at 16:21\defbibheading{bibliography}[\bibname]is wrong.\defbibheadingtakes two mandatory arguments. The call is missing the actual definition of the heading. Remove that line and change\chapter{References}\printbibliography[heading=bibliography]to\printbibliography[heading=bibnumbered, title=References]. Thebiblatexoptionhyperref=auto,is the default and can be dropped.\renewcommand*{\nameyeardelim}{\addcomma\space}should be\DeclareDelimFormat{nameyeardelim}{\addcomma\space}. – moewe Jan 26 '22 at 16:23biblatexadvice, which would make it a perfect duplicate of https://tex.stackexchange.com/q/12806/. If you have more specific issues, just ask new questions. – moewe Feb 04 '22 at 07:29