I think I've read all posts concerning this issue and a solution might have been provided but I don't understand it.
Here is the full story.
I export my bibliography file from Zotero (I tried everything BibTex, BibLaTex, UTF-8 and Western, all possible combinations).
I work in Texniccenter editor.
I would like to use biblatex (the example is not full, it's a thesis normally, so too long).
Here is my code:
\documentclass{book}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{csquotes}
\usepackage[backend=biber]{biblatex}
\addbibresource{bibli}
\title{YYY}
\author{\textsc{ZZZ}}
\date{\today}
\begin{document}
\maketitle
\frontmatter
\tableofcontents
\chapter{Introduction}
\mainmatter
\part{State of the art}
\chapter{blabla}
L'intérêt pour l'activité d'abattage a été étudié à plusieurs reprises en sciences sociales. Toutefois, la condition animale en elle-même y est très peu abordée, sans doute parce que les acteurs de terrain eux-mêmes la considère comme un non-sujet \cite{muller_a_2008}.
\printbibliography
\addcontentsline{toc}{chapter}{Bibliographie}
\end{document}
Here is a part of my bibliography file:
@book{muller_a_2008,
address = {Paris; Versailles},
title = {{\'A} l'abattoir: travail et relations professionnelles face au risque sanitaire},
isbn = {978-2-7351-1170-1 978-2-7592-0051-1},
shorttitle = {{\'A} l'abattoir},
language = {French},
publisher = {{\'E}ditions de la Maison des sciences de l'homme ; {\'E}ditions Quae},
author = {Muller, S{\'e}verin},
year = {2008},
note = {OCLC: 262718567}
}
Probably the answer is simple, but I am quite new, and yes, I really read a lot of documentation, without finding anything useful.
I also tried to change the settings of output profile (use biber instead of bibtex) but it did not work.
Problem might come from Zotero? If so how to know where cause my file is super long?...
\addbibresource{bibli.bib}(with the.bibextension). – Paul Gaborit Jun 29 '20 at 14:55.bibfile extension is also missing, but there are some other things wrong there as well, so the answer is a bit longer and mentions unrelated things. – moewe Jun 29 '20 at 15:52\printbibliography \addcontentsline{toc}{chapter}{Bibliographie}with\printbibliography[heading=bibintoc]. This is not only shorter, but will also work properly in case your bibliography has several pages. Note that theisbnfield should only contain one ISBN, not several. Note further that one of the strengths of Biber is that it can deal with UTF-8 input, so you need not encode non-ASCII chars with macros (you can sayÁinstead of{\'A}). ... – moewe Jun 29 '20 at 15:58latin1, but I think that Texniccenter still useslatin1as default: One reason more to switch to a different editor. – moewe Jun 29 '20 at 15:59