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