Hi,
I'm new to this forum, so I don't know if this is the best place to post my question...
I'm using Texshop and bibtex with the harv-elsart.bst layout. This style is close to perfection for me except for 2 things:
1) In the text I would like to see "et al" in italics. Does anyone know the way to modify the bst file to obtain this?
2) In the bibliography I would like to have autor X, author Y & author Z instead of autor X, author Y, author Z. In other words, I would like to get the "&" symbol before my last author, even if I have only 2 authors. Does anyone know the way to modify the bst file to obtain this?
Many thanks,
Bjorn
Belgium
General ⇒ bibtex question
NEW: TikZ book now 40% off at Amazon.com for a short time.
bibtex question
I don't know if there's an easier way to do it, but I once did it by opening the bst file and modifying it this way:
1) Find the and put the et~al. in italics.
2) Under the "FUNCTION {format.names}" change the part to
This worked for me. Hope it makes sense 
1) Find the
Code: Select all
FUNCTION {bbl.etal}
{ "et~al." }
2) Under the "FUNCTION {format.names}" change the part
Code: Select all
t "others" =
{
" " * bbl.etal *
}
{ " " * t * }
Code: Select all
t "others" =
{
" " * bbl.etal *
}
{ " \& " * t * }

-
- Posts: 28
- Joined: Fri Apr 13, 2007 11:17 am
Re: bibtex question
I'll give it a try!!
Thanks!
Bjorn
Thanks!
Bjorn