General ⇒ bibtex question
-
- Posts: 28
- Joined: Fri Apr 13, 2007 11:17 am
bibtex question
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
bibtex question
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
Thanks!
Bjorn