A latex file that I have is set up like this:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[style=mla]{biblatex}
\addbibresource{ref}
\begin{document}
\cite{keyword}
\printbibliography
\end{document}
When I compile this, I get an output of keyword and nothing else. The biblatex file is in the same folder as the latex file, I am copying the keyword straight from the .bib file into latex, and I have tried including the .bib tag so it is \addbibresource{ref.bib}. The bib file has been exported from Zotero using BetterBibTex under the export option "BetterBibLaTeX." I feel like I have all my bases covered, so I am curious why this is not working.
.bibfile is calledref.bibthe correct call is\addbibresource{ref.bib}.\addbibresource{ref}is incorrect and not guaranteed to work. You will need to run Biber on your document. See https://tex.stackexchange.com/q/63852/35864. If you usually have your editor compile your file for you read https://tex.stackexchange.com/q/154751/35864. – moewe Feb 25 '21 at 21:18