Since I could not find the style that met my teacher's requirements for the bibliography I have to do, I created my own bst with latex makebst on my mac. I had chosen to make the volume bold but it does not appear in boldface on my document (I am using LyX). I was wondering if there is a way to make it appear in bold by modifying the bst file
This is what I have in the volume section
FUNCTION {format.bvolume}
{ volume empty$
{ "" }
{ bbl.volume volume tie.or.space.prefix
"volume" bibinfo.check * *
series "series" bibinfo.check
duplicate$ empty$ 'pop$
{ emphasize ", " * swap$ * }
if$
"volume and number" number either.or.check
}
if$
}
FUNCTION {format.number.series}
{ volume empty$
{ number empty$
{ series field.or.null }
{ series empty$
{ number "number" bibinfo.check }
{ output.state mid.sentence =
{ bbl.number }
{ bbl.number capitalize }
if$
number tie.or.space.prefix "number" bibinfo.check * *
bbl.in space.word *
series "series" bibinfo.check *
}
if$
}
if$
}
{ "" }
if$
}
Can someone help me solve this problem ? I tried to add {\bf } around * swap$ * but it does not seem to be working.
format.bvolumeandformat.number.series, pertain to the former concept of "volume". If you're interested in the journal-related volume concept, you should be examining the functionformat.vol.num.pages. – Mico Nov 13 '12 at 00:22