我想我已经阅读了有关此问题的所有帖子并且可能已经提供了解决方案,但我不明白。
以下是完整的故事。
我从 Zotero 导出我的参考书目文件(我尝试了 BibTex、BibLaTex、UTF-8 和 Western 的所有可能的组合)。
我在 Texniccenter 编辑部工作。
我想使用 biblatex(示例不完整,通常是论文,所以太长)。
这是我的代码:
\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}
以下是我的书目文件的一部分:
@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}
}
答案可能很简单,但我还很新,是的,我确实阅读了很多文档,但没有发现任何有用的东西。
我也尝试过改变输出配置文件的设置(使用biber
而不是bibtex
),但没有效果。
问题可能出在 Zotero 上?如果是这样,如何知道我的文件超长的原因是什么?...
答案1
Biber 错误信息很明确:ERROR - Cannot find 'bibli'!
使用\addbibresource{bibli.bib}
(带.bib
扩展名) 代替\addbibresource{bibli}
。