I have used quite some time searching for a solution to my compile problem. The document worked fine untill yesterday. After adding some new references, compiling stoped working properly. I have however used latex only for a few months, so the error might be an easy fix.
My error code in the blg file is:
[836] Utils.pm:209> ERROR - BibTeX subsystem:
C:\Users\andre\AppData\Local\Temp\yb9w7ETEpQ\thesisbiblo.bib_16800.utf8,
line 1375, syntax error: found ",", expected one of: number, name (entry
type, key, field, or macro name), end of entry ("}" or ")") or quoted string
({...} or "...").
I have biber 2.11 and miktex 2.9 and thought it could have been the cache file as suggested in a previous thread with 2.11 versions, but it did not do the trick to delete that either.
Thanks
This is how my "main" document looks like:
\documentclass[man,12pt,a4paper,babel,english]{apa6}
\usepackage{babel,duomasterforside}
\usepackage[utf8]{inputenc}
\usepackage[hidelinks]{hyperref}
% Math syntax
\usepackage{siunitx}
\usepackage{upgreek}
\usepackage{gensymb}
\usepackage{amsmath}
\usepackage{mathtools}
\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}
% Figures
\usepackage{graphicx}
\graphicspath{{Figures/}}
\usepackage{float}
\usepackage{subcaption}
% Biblography and citing
\usepackage[style=apa,backend=biber,sortcites=true,sorting=nyt,autocite=inline,uniquename=false]{biblatex}
\addbibresource{thesisbiblo.bib}
% Frontpage
\usepackage{pdfpages}
\begin{document}
% Frontpage
\includepdf[pages=1-]{titlepage.pdf}
% Abstract
\input{Abstract}
\newpage
% Table of contents
\tableofcontents
\newpage
% Document
\input{Introduction.theory}
\newpage
\input{Methods}
\newpage
\input{Results}
\newpage
\input{Discussion}
\newpage
\input{Conclusion}
\newpage
% References
\printbibliography
\end{document}
.bibfile (don't open it with JabRef, open it with a normal text editor) and check if all comas, quotation marks and braces are where they are supposed to be. You can try to isolate the issue by deleting a few entries and checking if the error persists. Keep in mind that the error message might be indicating a point slightly after the real error occurred, sometimes the symptoms follow the cause by a few lines. – moewe Oct 31 '18 at 09:06.bibfile. Do check if the entry in question has a key: An empty key would cause such a message and is one of the few things that could be messed up in an automatically generated bibliography file. – moewe Oct 31 '18 at 09:08