I am using biblatex to make the citation numbers bold by redefining \citesetup to include a \bfseries:
\renewcommand*{\citesetup}{%
\bfseries
\biburlsetup
\frenchspacing}
This makes the reference \cite{key} appear as
[1]
as desired. The problem is that sometimes I want to use \textcite to also include the author's name, but still with a bold citation number, i.e., the command \textcite{key} should produce
author's name [1]
With my redefined \citesetup this is not achieved since it makes the author's name as well as the citation number bold, i.e.,
author's name [1]
Does anybody know of a good way to achieve the desired effect with a partial bold reference?

