[Tex/LaTex] Remove “In” from inproceedings entries using makebst file

bibliographiesbibtexcustom-bib

I have made a custom .bst file using makebst, but I can't remove the "In" before the booktitle in inproceedings entries. That is, right now my entries read:

…"title." In Proceedings of Conference,

but I would like them to read:

…"title." Proceedings of Conference,

Is there a way to edit this in the .dbj file, or in my .bst file directly?

Best Answer

In your .bst file there should be the following function:

FUNCTION {bbl.in}

{ "in" }

Replace it with:

FUNCTION {bbl.in}

{ "" }

This will remove the "in" in the reference for inproceedings entries.

Related Question