I am getting an error when I attempt to compile my document, this has appeared since I added a few more references to Mendeley and auto generated the bib files. I get the above error pointing to the entries for the recently added reference in the .bbl file.
I tried removing the offending reference, however there are three causing problems it seems, and I do need these references.
This problem appears to be similar
However I have tried the suggested solution and hasn't worked for me. Everything is uptodate.
I include biblatex with these settings,
\usepackage[
natbib=true,
hyperref=true,
backend=bibtex,
backref=true,
url=false,
arxiv=false,
isbn=false,
doi=false,
maxcitenames=3,
maxbibnames=100,
style=numeric-comp,
sorting=none
]{biblatex}
A MWE follows:
\documentclass[11pt,twoside,a4paper]{article} % for the MSc in Informatics
\usepackage{microtype}
\usepackage{textcomp,gensymb}
\usepackage{array}
\usepackage{titlesec}
\usepackage[english]{babel}
\usepackage{lastpage}
\usepackage{xifthen}
\usepackage{lipsum}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{amsmath}
\usepackage{tikz}
\usepackage{booktabs,siunitx}
\usepackage[nottoc,numbib]{tocbibind}
\makeatletter
\def\blx@maxline{77}
\makeatother
\usepackage[natbib=true,hyperref=true,backend=bibtex,backref=true,url=false,arxiv=false,isbn=false,doi=false,maxcitenames=3,maxbibnames=100,style=numeric-comp,sorting=none]{biblatex}
\addbibresource{Thesis-Weblinks.bib}
% redefine headings
\titleformat{\chapter}[hang]{\LARGE\bfseries\sffamily}{\thechapter\hspace{1em}}{0pt}{}
%% Information about the title, etc.
\title{MSc thesis \\ Your title here}
\author{A name \\ }
\begin{document}
an example \citet{Media2016}
\maketitle
\printbibliography
\end{document}
And the bib file:
Automatically generated by Mendeley Desktop 1.16.1
Any changes to this file will be lost if it is regenerated by Mendeley.
BibTeX export options can be customized via Options -> BibTeX in Mendeley Desktop
@misc{Media2016,
author = {Media, Common Sense},
keywords = {CSMMinecraft},
mendeley-tags = {CSMMinecraft},
title = {{Common Sense Media}},
url = {https://www.commonsensemedia.org/game-reviews/minecraft/user-reviews/child https://www.commonsensemedia.org/game-reviews/wii-sports https://www.commonsensemedia.org/},
urldate = {2016-08-09},
year = {2016}
}
backend=biberinstead ofbibtex? – samcarter_is_at_topanswers.xyz Aug 11 '16 at 10:53\usepackage{biblatex}bevore the\makeatletter? That could be a more general solution. – samcarter_is_at_topanswers.xyz Aug 11 '16 at 11:58biblatex(I just checked, it worked after I moved the\makeatletterbit). Note also that theurlfield should only ever contain one URL at a time, multiple URLs are bound to cause confusion, if not outright trouble. – moewe Aug 11 '16 at 12:02