I am using unsrtnat.bst, but I need entries of type inproceedings to have their title quoted. The title line is:
format.title "title" output.check
I found a 'quote' function in another .bst file
FUNCTION {quote}
{ duplicate$ empty$
{ pop$ "" }
{ "``" swap$ * "''" * }
if$
}
and changed the line to
format.title quote "title" output.check
and it almost works... it produces:
Author "Title", Conference
but unfortunately it needs to be
Author "Title," Conference
(the comma inside the quotes). Can anyone suggest a way to do this?