biblatex con índice

biblatex con índice

Estoy usando biblatex e intento obtener un índice no solo de palabras sino también de autores. Sin embargo, no quiero ver títulos. El siguiente MWE me da títulos en el índice.

\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}

Respuesta1

La mayoría de los comandos de citas llaman a bibmacro citeindexpara indexar. La definición estándar de esa macro biblatex.defes

\newbibmacro*{citeindex}{%
  \ifciteindex
    {\indexnames{labelname}%
     \indexfield{indextitle}}
    {}}

Si desea indexar solo nombres, puede redefinir esta macro

\documentclass{article}
\usepackage{makeidx}
\makeindex
\usepackage[style=numeric, natbib=true, backend=bibtex, sorting=nyt,
  indexing=cite]{biblatex}

\renewbibmacro*{citeindex}{%
  \ifciteindex
    {\indexnames{labelname}}
    {}}

\addbibresource{biblatex-examples.bib}
\begin{document}
  \citet{sigfridsson} have shown
  \index{Computer}
  \printbibliography
  \printindex
\end{document}

Índice sin título de obra.

información relacionada