I'd like to use \citeauthor as a way of mentioning the author when the work per se is not being referenced, while automatically indexing each time it's mentioned. I've experimented redefining it with \DeclareCiteCommand and didn't get the wanted result.
\documentclass{article}
\usepackage[style=verbose]{biblatex}
\ExecuteBibliographyOptions{
hyperref = true,
indexing = cite,
autocite = footnote
}
\begin{filecontents}{test.bib}
@book{aristotle:physics,
author = {Aristotle},
title = {Physics},
publisher = {G. P. Putnam},
location = {New York},
date = 1929
}
}
\end{filecontents}
\addbibresource{test.bib}
\usepackage{imakeidx}
\makeindex[title={Authors Index}, columns=2]
\usepackage[hidelinks]{hyperref}
\begin{document}
\noindent \citeauthor{aristotle:physics} [...]
\printbibliography
\printindex
\end{document}