Giuseppe Vitalone wrote:
Hi, I'd like to modify that style in a way that it doesn't write words in lower-case, is this possible?
Yes. Copy amsalpha.bst to an appropriate place in your local TeX tree (e.g., /home/you/texmf/bibtex/bst/) and rename it to avoid conflicts. Open it and find this bit:
FUNCTION {format.title}
{ title empty$
   { "" }
   { title "t" change.case$ emphasize }
 if$
}
and change it to this:
FUNCTION {format.title}
{ title empty$
   { "" }
   { title emphasize }
 if$
}
That should do it. Don't forget to run texhash or do whatever else you need to do to regenerate the TeX database when you're done. And don't forget to choose your new bibliography style!

Richard

--
==================================================================
Richard G Heck, Jr
Professor of Philosophy
Brown University
http://frege.brown.edu/heck/
==================================================================
Get my public key from http://sks.keyserver.penguin.de
Hash: 0x1DE91F1E66FFBDEC
Learn how to sign your email using Thunderbird and GnuPG at:
http://dudu.dyn.2-h.org/nist/gpg-enigmail-howto

Reply via email to