I'm trying to manually put formatting codes into the fields of my .bib file, but the final compile step crashes with a Missing \endcsname inserted error on the \printbibliography line. In particular, I need to bold particular names, which may be in an arbitrary position in the author list. The problems seems to be with \textbf{Name} breaking the final compile.
I also tried {\bfseries Name}, but that bolds all the names afterwards.
(Background, I need to do for the publications list of my CV to put it in a particular required format. I'd rather use biblatex than manually format everything.)
Below is my MNWE. I'm compiling with pdflatex; biber; pdflatex on a MikTex-64bit distribution.
\documentclass{article}
\usepackage{filecontents}
\usepackage[backend=biber]{biblatex}
% biblatex version 3.3
% biber version 2.4
\begin{filecontents}{\jobname.bib}
@misc{Article1,
author = {Last1\textsuperscript{*}, First1 and \textbf{Last2}, \textbf{First2} and Last3, First3},
year = {2016},
title = {The Title},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
Star\textsuperscript{*} indicates student author. \textbf{Bold} indicates corresponding author.
\subsection*{Desired output}
[1] First1 Last1\textsuperscript{*}, \textbf{First2} \textbf{Last2}, and First3 Last3. \emph{The Title}. 2016.
\printbibliography
\end{document}

biblatexmlname formats (but then you will have to switch from.bibto the new format ...). Or with some extra name fields, which would introduce massive redundancy, I guess. – moewe Apr 16 '16 at 16:46\value{listcount}? – moewe Apr 16 '16 at 16:51\value{listcount}and\value{listtotal}defined in name formats. – PLK Apr 16 '16 at 16:53