I am working on a promotion and tenure CV's publication section. I would like the following features:
- Make certain authors bold (myself)
- Dagger (\dag) certain authors (students)
- Double dagger certain authors (postdocs)
I was able to make the first one work by:
\usepackage[backend=biber,style=numeric,defernumbers=true,sorting=ydnt,maxbibnames=99]{biblatex}
\addbibresource{references.bib}
\newcommand{\makeauthorbold}[1]{%
\DeclareNameFormat{author}{%
\ifthenelse{\value{listcount}=1}
{%
{\expandafter\ifstrequal\expandafter{\namepartfamily}{#1}{\mkbibbold{\namepartfamily\addcomma\addspace \namepartgiveni}}{\namepartfamily\addcomma\addspace \namepartgiveni}}
%
}{\ifnumless{\value{listcount}}{\value{liststop}}
{\expandafter\ifstrequal\expandafter{\namepartfamily}{#1}{\mkbibbold{\addcomma\addspace \namepartfamily\addcomma\addspace \namepartgiveni}}{\addcomma\addspace \namepartfamily\addcomma\addspace \namepartgiveni}}
{\expandafter\ifstrequal\expandafter{\namepartfamily}{#1}{\mkbibbold{\addcomma\addspace \namepartfamily\addcomma\addspace \namepartgiveni\addcomma\isdot}}{\addcomma\addspace \namepartfamily\addcomma\addspace \namepartgiveni\addcomma\isdot}}%
}
\ifthenelse{\value{listcount}<\value{liststop}}
{\addcomma\space}
}
}
\makeauthorbold{MyLastName}
I originally hoped to repeat a similar process for points two and three, and creating a \makeauthordag and \makeauthorddag commands but only the last one will work (seems to be overwriting previous commands actions).
