I'm currently trying to switch from natbib to biblatex - following the suggestions given in this answer - but am having some problems.
Here is my code:
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond}
\usepackage[style=apa, natbib=true]{biblatex}
\bibliography{/Users/James/Documents/library.bib}
\title{Figuring Out How to Get an APA Bibliography}
\begin{document}
\maketitle
I'm trying to get an APA-style bibliography by switching from Natbib to Biblatex. The APA-style is used by \citet{Steinberger2019}, but also by \citet{Becker2012} and \citet{Beall2005}.
\printbibliography
\end{document}
But this outputs:
The references are bold, which they shouldn't be, they're not formatted properly (i.e. with the year in parentheses), and there's no bibliography. Where have I gone wrong?
(I should mention that I use Mendeley to manage my references, and so my external bibliography file has to be a .bib file, since this is what Mendeley outputs)
Here are the error messages I got:


biber, and did you get any error messages? (b) Have you tried replacing\bibliographywith\addbibresource? – Mico Nov 22 '19 at 09:10bibtexprogramme to generate the bibliography, with biblatex you usebiberformat the bibliography – daleif Nov 22 '19 at 09:32biberprogramme as it is vastly more powerful thanbibtex– daleif Nov 22 '19 at 09:33