I have a related question to Transforming the .bib file to get upper cases.
I have a bst I would like to hack in order to get the reverse effect, namely to get rid of capitalized article title, eg
"This is a paper on economics"
instead of
"This is a Paper on Economics"
even if the entry in the bib file is the latter.
I have located this in the bst file
FUNCTION {format.title}
{ title
"title" bibinfo.check
duplicate$ empty$ 'skip$
{
"\enquote{" swap$ *
"}, " *
}
if$
}
I have tried several places to insert change.case$ (to be honest, I do not really understand the language, so it's all trial and error), but all resulted in the titles missing in the bibliography.
Is that the way to do it, or would I have to search somewhere else to get the desired effect?
Christoph