使用 biblatex 时根本不出现参考书目

使用 biblatex 时根本不出现参考书目

阅读评论并遵循有关如何使用的建议biblatex这里我已经创建了以下结构(但仍然不能正确生成参考书目):

%%%%%%%%%%%%%%%%%%%%%%
% everything that this documentclass requires
%%%%%%%%%%%%%%%%%%%%%%
http://www.cs.put.poznan.pl/csobaniec/software/latex/files/dcsbook.cls
http://www.cs.put.poznan.pl/csobaniec/software/latex/files/dcslib.sty

%%%%%%%%%%%%%%%%%%%%%%
% thesis.tex
%%%%%%%%%%%%%%%%%%%%%%

\documentclass[11pt,a4paper,english,thesis]{dcsbook}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{babel}
\usepackage{float}

\usepackage[backend=bibtex,style=numeric]{biblatex}
\addbibresource{references}

\begin{document}
\raggedbottom

\author{YYY}
\title{XXX}
\supervisor{ZZZ}
\date{Poznań, 2014}
\maketitle
\frontmatter
\tableofcontents{}
\mainmatter

\chapter{Introduction}

aa \cite{StoicaChord}  bbbb

\backmatter

\printbibliography

\end{document}

%%%%%%%%%%%%%%%%%%%%%%
% references.bib
%%%%%%%%%%%%%%%%%%%%%%
@article{StoicaChord,
        Author = {Ion Stoica and Robert Morris and David Liben{-}Nowell and David R. Karger and M. Frans Kaashoek and Frank Dabek and Hari Balakrishnan},
        Bibsource = {dblp computer science bibliography, http://dblp.org},
        Biburl = {http://dblp.uni-trier.de/rec/bib/journals/ton/StoicaMLKKDB03},
        Date-Modified = {2014-10-15 01:28:44 +0000},
        Doi = {10.1109/TNET.2002.808407},
        Journal = {{IEEE/ACM} Trans. Netw.},
        Number = {1},
        Pages = {17--32},
        Timestamp = {Wed, 15 Oct 2014 01:53:37 +0200},
        Title = {Chord: a scalable peer-to-peer lookup protocol for internet applications},
        Url = {http://dx.doi.org/10.1109/TNET.2002.808407},
        Volume = {11},
        Year = {2003},
        Bdsk-Url-1 = {http://dx.doi.org/10.1109/TNET.2002.808407}}

文件.tex本身已转换为 pdf,但输出中没有书目。对唯一一个书目项目的引用不是以数字呈现,而是 [1],则呈现如下:[斯多葛学派和弦]。

答案1

与传统的 BibTeX 样式文件相反,biblatex正确的语法是

\addbibresource{references.bib}

即包括.bib文件扩展名。

相关内容