[Tex/LaTex] how to remove “Eds” after authors name in bibtex

bibtexrevtex

I have no idea why LaTeX insistently puts "eds." after authors name in the bib file.
I simply use the following bibliography :

@PREAMBLE{
 "\providecommand{\noopsort}[1]{}"
 # "\providecommand{\singleletter}[1]{#1}%"
}


@PROCEEDINGS{ref1,
   editor = "James Bond and others",
   title = "Proceedings of ..e",
   address = "Washington, DC",
   organization = "",
   publisher = "",
   note = "",
}

The output is like this:

James Bond et al., eds, Proceedings…

Where does the eds come from??!

Best Answer

Context

Proceedings are a collection of many conference papers and as such have many individual authors. The persons that take the individual articles and make them into proceedings are the editors. To distinguish the roles of authors and editors, the later are typically emphasized with (eds) or a variation thereof.

Bibtex entry

The proceedings itself do not have an author, only the contained individual articles have that. If you are referring to an article within the proceedings, you have to use the bibtex entry type @inproceedings. If you want to cite the whole proceeding the "eds" should stay there. For bibtex entry types see wikipedia

Forcing Bibtex to Comply

Try other bibtex entry types that fit your needs. For instance @misc has authors, title, and a generic "howpublished" in which you can put all the rest. If this fails, or if you want to change the format for all entries of one type, you have to change or edit the bibliography style. They reside in .bst files (see this for your case)

Related Question