LaTeX code is:
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Read \textcite{cotton}.
\printbibliography
\end{document}
Output is:
Read Cotton et al. (1999).
References
Cotton, Frank Albert et al. (1999). Advanced inorganic chemistry. 6th ed. Chich- ester: Wiley.
I need to italicize et al. in citation and references. So I did this:
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\DefineBibliographyStrings{english}{andothers = {\em et\addabbrvspace al\adddot}}
\addbibresource{biblatex-examples.bib}
\begin{document}
Read \textcite{cotton}.
\printbibliography
\end{document}
Now output is:
Read Cotton et al. (1999).
References
Cotton, Frank Albert et al. (1999). Advanced inorganic chemistry. 6th ed. Chich- ester: Wiley.
Is \DefineBibliographyStrings{english}{andothers = {\em et\addabbrvspace al\adddot}} a good solution to this problem?
