I would like to unable the case change in titles in Bibtex. Since I've got many titles with company names, I don't want to review each title and put the characters between brackets to keep the case. I create my own bst file, following the advice at http://www.nabble.com/BibTeX:-Change-of ... 42616.html, yet since I am using MacTex (which is based on the Texlive distribution), I have not updated the FNDB.
I'm using natbib, I just changed the following lines in plainnat.bst, from:
Code: Select all
FUNCTION {format.title}{ title empty${ "" }{ title "t" change.case$ }if$}
Code: Select all
FUNCTION {format.title}{ title empty${ "" }{ title "t" }if$}
Yet I got these errors:
Code: Select all
...---the literal stack isn't empty for entry google:open-web-mobilewhile executing---line 1429 of file mybibca.bstptr=1, stack=Web~Server Survey---the literal stack isn't empty for entry google:web-server-surveywhile executing---line 1429 of file mybibca.bstptr=1, stack=Steven~J. Vaughan-Nichols---the literal stack isn't empty for entry :vewhile executing---line 1429 of file mybibca.bstptr=1, stack=Harry Wingo...(There were 86 error messages)
Any idea?
Thank you in advance!
Charles