How can I make an annotated bibliography using the unsrt style? I use the unsrt biliography style to create the reference list based on the order the references appear in the document.
I use a bibtex file that holds all the entries of my bibliography. I want to add an extra field to each entry with a short description which should then appear in the bibliography.
Current code:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=1.5in]{geometry}
\title{The current state of cross-platform game development for different device types}
\author{...}
\date{...}
\begin{document}
\maketitle
\input{Preface.tex}
\input{Abstract.tex}
....
\bibliographystyle{unsrt}
\bibliography{mybib}
\end{document}
example entry of bibtex file:
@inproceedings{someref,
author = {....},
title = {....},
....
publisher = {....},
AnnotationOrSomething = {blabla}
}
I use sharelatex as editor.
notefield for the annotations? Separately, have you considered using the styleunsrtnatinstead ofunsrt? Two advantages ofunsrtnatare (i) good interface with thenatbibpackage and (ii) recognition by default of field such asurl,eid, andisbn. – Mico Oct 15 '14 at 19:11biblatex, which uses thenumericstyle by default and is relatively easy to customise. Itsaddendumfield is like thenotefield, but is printed at the end of the entry. – Bernard Oct 15 '14 at 20:30