BibTeX, biblatex and biber ⇒ No labeling of references in works cited
No labeling of references in works cited
Thus, as a hypothetical example, in the text I would say that dogs are mammals [Boynton 2003].
References:
Boynton, R. A guide to mammals, Harper: New York 2004.
What I keep getting is--
[Boynton 2003] Boynton, R. A guide to mammals, Harper: New York 2004.
Is it possible to eliminate this first part? Or is the fact that bibtex creates a .bbl file with the citation names require them to be in both places?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
No labeling of references in works cited
try the natbib package together with the plainnat bibliographical style:
Code: Select all
\begin{filecontents*}{biblio.bib}
@book{knuth79,
author = "Donald E. Knuth",
title = "Tex and Metafont, New Directions in Typesetting",
year = "1979",
publisher = "American Mathematical Society and Digital Press",
address = "Stanford"
}
\end{filecontents*}
\documentclass{article}
\usepackage{natbib}
\begin{document}
\citep{knuth79}
\bibliographystyle{plainnat}
\bibliography{biblio}
\end{document}