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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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