I am using natbib and \bibliographystyle{plainnat}. However when I do that it just prints my @book and @incollection. It skpis the @misc.
I what to get:
However I instead of et al. I get all 3 names from my .bib file.F. Baader, et al. (2008). `Description Logics'. In F. van Harmelen, V. Lifschitz, & B. Porter (eds.), Handbook of Knowledge Representation, chap. 3, pp. 135{180. Elsevier.
Here is my .bib file:
Code: Select all
@incollection{franz,
author = {Baader, Franz and Horrocks, Ian and Sattler, Ulrike},
title = {'{D}escription {L}ogics'},
booktitle = {\emph{F. van Harmelen, V. Lifschitz, \& B. Porter (eds.),} Handbook of Knowledge Representation},
note = {chap. 3, pp. 135-180. Elsevier.},
year = {2008}
}
@book{pascal,
author = {Hitzler, Pascal and Krotzsch, Markus and Rudolph, Sebastian},
title = {Foundations of Semantic Web Technologies},
publisher = {Chapman \& Hall/CRC},
year = {2010}
}
@misc{w3c,
author = {W3C OWL Working Group (2009)},
title = {'{OWL} 2 {W}eb {O}ntology {L}anguage - {D}ocument {O}verview ({W}orking {D}raft 27 {M}arch 2009)'},
howpublished = {\url{http://www.w3.org/TR/owl2-overview/}},
year = {2009}
}
Code: Select all
\documentclass[a4paper, 11pt]{report}
\usepackage[top=15mm, bottom=15mm, left=35mm, right=20mm]{geometry}
\usepackage[round]{natbib}
\usepackage{hyperref}
\makeatletter
\def\@biblabel#1{}
\makeatother
\begin{document}
\bibliographystyle{plainnat}
\nocite{*}
\bibliography{cm1201_1515140}
\end{document}
Thank you in advance for the help.