views:

169

answers:

2

I'm writing the bibliography of my report with thebibliography environment because I don't need a BibTeX database (or I don't have the time for learn how to customize or write a style).

Well, using the optional argument [label] I can specify as I want the cite references are show, for example:

\bibitem[PNUD1996]{PNUD1996} PNUD. Desarrollo Humano en Chile 1996. Santiago: PNUD, 1996.

So, if I write:

in \cite{PNUD1996}. it produces:

in [PNUD1996].

But the label also appear in the bibliography:

[PNUD1996] PNUD. Desarrollo Humano en Chile 1996. Santiago: PNUD, 1996.

Can I to remove the label from the bibliography and keeping it in the reference? I mean, to get:

in [PNUD1996].

and

PNUD. Desarrollo Humano en Chile 1996. Santiago: PNUD, 1996.

Thanks, and sorry for my English :(

A: 

I think

\makeatletter
\def\@biblabel#1{}
\makeatother

in the preamble will do it (untested).

Joseph Wright
+1  A: 

If you use one of the author-data citation systems, such as Harvard or apalike, then there is no key displayed in the bibliography, and readers look up source in the reflist using the information in the body of the items, just as you want. You can mix and match: you can use one BST file to generate the reflist, and an unrelated set of Latex macros to generate citations in the body of your document.

Your example is a little eccentric: you look up items based on author and date, but the author information and date are not together at the start of the bibitem, but occur widely separated. This makes it somewhat more time-consuming to look up citations; it's not unprecedented: the ISO 690 bibliography style splits the information in this way, and there are journals that use author-date referencing with it. But if you have a choice, I'd avoid doing things this way.

Charles Stewart
Thanks for the advice. In the university where I study they let us choose between APA Style or ISO 690, so I'll switch to APA. The other thing I'm worried about is that I'm writing in Spanish, so I'll look for a Spanish version of apalike.
Tae
@Tae: I think there isn't anything in CTAN: if there were, it should be under http://www.ctan.org/tex-archive/biblio/bibtex/contrib/. What needs changing? Is it just changing the "and" to "y"? That's a rather easy change to apalike.sty to make.
Charles Stewart