I need to edit apalike file so that volume number apears in bold e.g. 1 and et al. in italic. Anyone? Thanks!
Asked
Active
Viewed 4,859 times
2 Answers
5
- Make a copy of apalike.bst, rename it e.g. myapalike.bst
- To make volume bold find
FUNCTION {format.vol.num.pages}. In this function replace line{ volume field.or.nullwith{ "{\bfseries " volume "}" * * field.or.null - To make et al italic find
FUNCTION {format.lab.names}. In this function make 2 replacements:% { pop$ "et~al." * }should become{ pop$ "\textit{ et~al.}" * }{ " et~al." * }should become{ " \textit{et~al.}" * }
olyashevska
- 287
-1
You have to edit et~al. in \textit{et~al.} three times. The third one you will find in FUNCTION {format.names}.
Cheers
Heiko Oberdiek
- 271,626
cpeikert
- 1
\bfis an outdated command, use\bfseriesItalic is\textit{}rather thanemph– Jul 31 '15 at 08:09