I am using biblatex and attempting to get an index of not only words but also authors. However, I do not want to see titles. The following MWE gives me titles in the index.
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{my.bib}
@article{sanchez16,
title={Use of Damage Rating Index to Quantify Alkali-Silica Reaction Damage in Concrete: Fine versus Coarse Aggregate.},
author={Sanchez, L. and Fournier, B. and Jolin, M. },
journal={ACI Materials Journal},
volume={113},
number={4},
year={2016}
}
\end{filecontents}
\usepackage{makeidx}
\makeindex
\usepackage[style=numeric,natbib=true,backend=bibtex,sorting=nyt,refsegment=section,defernumbers=true,maxnames=4,indexing=cite
]{biblatex}
\addbibresource{my.bib}
%++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
\begin{document}
\citet{sanchez16} have shown
\index{Computer}
\printbibliography
\printindex
\end{document}

.bibentries (or even better: usingbiblatex-examples.bib) and citing a few entries so that we can see what you are asking about. Please test the MWE you post here in a new, empty folder to see what we see when we compile the file. – moewe Nov 28 '19 at 06:45latexmkif possible, this eschews the errors from insufficient manylatexruns or some missing interim commands. – Oleg Lobachev Nov 28 '19 at 17:00