To avoid/detect typos in author names I would like to use the bib file as a single source for names. Please see the following mwe:
\documentclass{article}
\begin{filecontents}{demo.bib}
@book{articleA,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@book{articleB,
author = {Author, A.},
year = {2002},
title = {Bravo},
}
\end{filecontents}
\usepackage[style=alphabetic]{biblatex}
\addbibresource{demo.bib}
\newcommand{\authorA}{\citeauthor{articleA}}
\newcommand{\authorAL}{\citename{articleA}{author}}
\begin{document}
The lookup seems to work fine using biblatex's \textbackslash citeauthor and/or
\textbackslash citename commands.
The only problem I have is, that a lookup always adds an entry (here:
[Aut01]) to the bibliography, eg.:
Hi, my name is \authorA.
Thus my question is:
How to lookup the author's name from bib file, without causing the lookup to
add a bibliography entry?
\printbibliography
\end{document}

\citeauthorin a refsection, see e.g. https://tex.stackexchange.com/a/645542/36296 – samcarter_is_at_topanswers.xyz Nov 16 '22 at 11:30