I'm trying to write my first LaTeX document, but I'm getting a wired error message with regards to using Texmaker to use biblatex. Whenever I try to compile my code the log highlights my \begin{document} line and states the following:
! Package biblatex Error: file "'Document name".bbl' not created by biblatex.
Where "Document name" is the name of my LaTeX file.
Here's my preamble:
\documentclass[11pt, twoside]{article}
\usepackage[margin = 2.5cm]{geometry}
\usepackage{amsfonts,mathtools,amssymb, amsthm}
\numberwithin{equation}{subsection}
\usepackage[none]{hyphenat}
\usepackage{gensymb}
\usepackage{changepage}
\usepackage{xcolor}
\usepackage{xfrac}
\usepackage{tabu}
\usepackage{booktabs,caption}
\usepackage[flushleft]{threeparttable}
\usepackage{graphicx}
\usepackage{float}
\usepackage{tabularx}
\usepackage[
backend=biber,
style = authoryear
]{biblatex}
\addbibresource{citations.bib}
Strangely, my test document for biblatex does work, which has the source code:
\documentclass[11pt]{article}
\usepackage[backend = biber,
style = authoryear
]{biblatex}
\addbibresource{RFCN-citations.bib}
\begin{document}
This is a text for bibLaTeX. \cite{HistOfMaths}
\printbibliography
\end{document}
I'm using Texmaker v5.0.2 and Windows 10 as my environment. I've made sure to configure Texmaker, as per the following screencaps:
I've been trying for 3 days now to get some sort of automated references within my document via some LaTeX package, and it's really starting to drive me insane.



.bblfile. This was generated with another programme (probablyBibTeX). If you delete it, it will be recreated by Biblatex on the next run. – cfr Jul 19 '18 at 03:25tabu. – cfr Jul 19 '18 at 03:26bibtexon the file. Or you told TeXmaker to run it. Nothing to do with LaTeX. Probablybibtexis default. You likely changed it to Biber. But then you're left with the file generated by BibTeX. – cfr Jul 19 '18 at 03:43.bblspecifically which needs to be deleted. I don't know what 'delete all aux files' means. Should it be 'delete all generated files'? – cfr Jul 20 '18 at 23:53