Code: Select all
\usepackage[square, numbers, sort&compress]{natbib}
\citet{xxxx}
, I do not get the "et al." in italics. I need it to be in italics. Does anyone know how I can change it to italics?Thank you
Cecilia
Code: Select all
\usepackage[square, numbers, sort&compress]{natbib}
\citet{xxxx}
, I do not get the "et al." in italics. I need it to be in italics. Does anyone know how I can change it to italics?RegardsHow to typeset "et al." in italics: Copy the fileplainnat.bst
(located in the\bibtex\bst\natbib subdirectory
of your TeX distribution) into your working directory and rename it to, say,myplainnat.bst
. (Later, this file should be placed in your local TEXMF tree). In the renamed copy, search for the string" et~al." *
(there should be four instances) and replace every instance with" \emph{et~al.}" *
. In your.tex
file, use\bibliographystyle{myplainnat}
.