josephwright / biblatex-ieee

A biblatex implementation of the IEEE bibliography style
LaTeX Project Public License v1.3c
47 stars 14 forks source link

et al. should be italicized #5

Closed josephwright closed 11 years ago

josephwright commented 11 years ago

[Reported by MobiusPizza]

I noticed that et al. is not printed in italic with biblatex-ieee. In IEEE reference guide: www.ieee.org/documents/ieeecitationref.pdf et al is italicized. I was informed this is a style issue not a biblatex issue.

Workaround at the moment with the following at the permeable: %Italicise et al.

\makeatletter
\def\act@on@bibmacro#1#2{%
  \expandafter#1\csname abx@macro@\detokenize{#2}\endcsname
}
\def\patchbibmacro{\act@on@bibmacro\patchcmd}
\def\pretobibmacro{\act@on@bibmacro\pretocmd}
\def\apptobibmacro{\act@on@bibmacro\apptocmd}
\def\showbibmacro{\act@on@bibmacro\show}
\makeatother

\patchbibmacro{name:andothers}{%
  \bibstring{andothers}%
}{%
  \bibstring[\emph]{andothers}%
}{}{}
josephwright commented 11 years ago

Fixed by fa108ae83adc657373c454687cad953f40201ccb.