附有现成文献的研究论文索引

附有现成文献的研究论文索引

我有一篇论文的 PDF URL。有地方可以准备\bibitem这篇论文吗?我不想只包含论文的 URL,也不想自己列出所有作者、日期等。

编辑:阅读评论并遵循有关如何使用的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

首先,你应该将参考书目移至一个单独的文件,扩展名为 bib.Ei references.bib,但要位于同一文件夹中。其次,在 biblatex(与 bibtex 相反)中,你需要将文件扩展名添加到参考文献中。包含文件的正确方法是

\addbibresource{references.bib}

相关内容