I have a URL of a paper in pdf. Is there a place that I can obtain ready \bibitem for this paper? I don't want to include neither only the URL of the paper nor list of all authors, dates, etc. myself.
EDIT: Having read the comments and following advise on how to use biblatex from here I have create the following structure (which still does not produce the bibliography correctly):
%%%%%%%%%%%%%%%%%%%%%%
% 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}}
The .tex files complies itself to pdf, but the bibliography is not present in the output. The reference to the only one bibliography item, instead of being rendered as a number, this is [1], is rendered as follows: [StoicaChord].
bibrecord. – Guido Oct 14 '14 at 23:45.bibfile, you should never type\bibitemat all. (I have never used\bibitemin a document of my own.) You also don't (generally) want formatting such as\emphin there. At least, it should be a last resort. – cfr Oct 15 '14 at 00:32\end{thebibliography}
and if I understand correctly, now I only have to include these: \bibliographystyle{plain} \bibliography{<my_bib_file1>, <my_bib_file2>}, where these files include definitions of @article/@misc and I am ready to go. Is that correct?
– koleS Oct 15 '14 at 00:44bibtexorbiblatex? Forbibtex, that's right. Forbiblatex, that's wrong. The bit about the.bibentries replacing the need for\bibitemis correct either way. Just\bibliographystyleisbibtexonly. – cfr Oct 15 '14 at 00:51biblatexpackage? No. You don't define\thebibliography. Please help us to help you and add a minimal working example (MWE) that illustrates your problem. It will be much easier for us to reproduce your situation and find out what the issue is when we see compilable code, starting with\documentclass{...}and ending with\end{document}. – cfr Oct 15 '14 at 01:06