I switched from BiBTeX to BiBLaTeX. I followed the instructions from lockstep in this post. I use JabRef for generating a .bib file.
Here is a MWE of my main.tex file:
\documentclass[a4paper,10pt, twoside, openright]{book}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[hidelinks]{hyperref} %for links to figures, chapters, references,...
\usepackage[refpage]{nomencl} %for making list of abbreviations
\usepackage{glossaries}
\usepackage{subcaption} %for subfigures
\usepackage{siunitx} %for displaying nice ranges in SI units
\usepackage{amsmath}
\usepackage[english]{babel}% Recommended
\usepackage{csquotes}% Recommended
\usepackage[bibstyle = numeric, sorting = none]{biblatex}
\addbibresource{ReferencesMA.bib}
\author{Me}
\title{sometitle}
\date{\today}
\begin{document}
\frontmatter
\maketitle
\tableofcontents
\mainmatter
\include{./Chapters/Chapter01}
\include{./Chapters/Chapter02}
\backmatter
%\bibliographystyle{unsrt}
%\bibliography{ReferencesMA}
\printbibliography
% bibliography, glossary and index would go here.
\end{document}
For build and view I used the following workflow: PdfLatex, Biber, PdfLatex, PdfLatex, Internal PdfViewer.
If I use BiBTeX instead of biblatex and substitute Biber by Bibtex, it works. However, I'd like to use BiBLaTeX.
The first error of a large list of error is File ended while scanning use of \field. \begin{document}.
I tried deleting all files which are generated during the build and retried the process. That didn't help.
If it is of any help, here is the content of the main.log : many rows!
Here is my .bib-file: .bib-file
What should I do? If I forgot to mention something I'll try to add the info as fast as possible.
biblatexandbiber? – Bernard Dec 07 '16 at 14:24