BibTeX, biblatex and biberNo labeling of references in works cited

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
eflee
Posts: 1
Joined: Mon Aug 03, 2009 9:46 pm

No labeling of references in works cited

Post by eflee »

I have searched for a long time to try to figure this out, so I thought that I would ask here.. I am attempting to created a bibliography style file that produces a bibliography with references that are not labeled. However, in the text I would like the references cited with an author-date style citation.

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?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

No labeling of references in works cited

Post by gmedina »

Hi,

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}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply