I need to change the format in the .bst file that I am using. The format currently as:
Beth, T. and Gollmann, D. (1989). Algorithm Engineering for Public Key Algorithm. IEEE Journal on selected areas in communications 7 (4): 458–465.
I want them to be as:
Beth, T. and Gollmann, D. (1989). Algorithm Engineering for Public Key Algorithm. IEEE Journal on selected areas in communications, 7 (4), 458–465.
I need to add comma after the Journal's name and also changing the colon after the series number into comma.
What commands should I add and on which function should I make changes?
Is the following function the right one to add changes on?
FUNCTION {format.bvolume}
{ volume empty$
{ "" }
{ series empty$
{ "" }
{ series emphasize }
if$
swap$ bbl.volume volume tie.or.space.connect output
}
if$
}
I have also other functions in bst file where I think they might be related, such as:
FUNCTION {format.number.series}
FUNCTION {format.vol.num.pages}
I appreciate the help in advance.
natbibyou might consider usingcustom-bibto set up your own .bst file - basically you runlatex makebst.texand follow the instructions - much easier than messing around with a .bst file – prettygully Apr 10 '12 at 6:30makebstprogram through LaTeX is sound. Just a quick note: It's not necessary to be usingnatbibin order to benefit from the capabilities of themakebstutility. – Mico Apr 10 '12 at 13:02