Juergen Spitzmueller wrote:
Paul A. Rubin wrote:
The BiBTeX database has the names in mixed case, and after reading all docs I could find and Googling both the web and comp.text.tex, I can't find a trick to switch them to uppercase in the bibliography.
Hack the bst file. A quick solution (untested): create a bst file with custom-bib where you chose smallcaps for the names. Then change the function
FUNCTION {scaps} { duplicate$ empty$ { pop$ "" } { "{\sc " swap$ * "}" * } if$ }
to
FUNCTION {scaps} { duplicate$ empty$ { pop$ "" } { "\MakeUppercase{" swap$ * "}" * } if$ }
HTH, Jürgen
Jürgen,
Thanks much. This *almost* works. The only problem is that it capitalizes the "and" connecting multiple authors, whereas the journal capitalizes the authors' names but not the conjunction <sigh>.
-- Paul