This is largely working but there are a few glitches that I'm not sure how to address. And there's probably a much simpler way of producing the very simple list I need. MWE follows
\documentclass[a4paper,12pt]{article}
\usepackage[english, french]{babel}
\usepackage[T1]{fontenc}
\usepackage{fontspec}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@journal{LEVY2005,
author = {Lévy, A.},
title = {Modification des enchères après une intervention sur l’ouverture de 1 Sans-Atout},
shorttitle = {Modifications après une intervention sur 1SA},
language = {Français},
publisher = {Le Bridgeur},
volume={785},
number={6},
date = {2005}
}
@journal{RODW2012,
author = {Rodwell, E.},
title = {{Eric Rodwell: The Bridge World Interview}},
publisher = {The Bridge World},
page={26},
date = {2012}
}
\end{filecontents}
\usepackage[autostyle]{csquotes}%
\usepackage{makeidx}
\makeindex
\usepackage{index}
\usepackage[hyperindex=true]{hyperref}
\usepackage[emindex]{apacite}
\bibliographystyle{apacitex}
\makeindex
\begin{document}
Cette convention était popularisée par l'équipe Meckwell. \citeauthor{RODW2012}
On suit l'article de Lévy.\citeauthor{LEVY2005}
\newpage
\bibliography{mwe}
\printindex[autx]
\newpage
\printindex
\end{document}
The output is :
A)
Cette convention était popularisée par l'équipe Meckwell. Rodwell
On suit l'article de Lévy.Lévy
B)
Références
Lévy, A. (n.d.). Modification ...
Rodwell, E. (n.d.). Eric Rodwell: ...
C)
Index des auteurs
Lévy, A., 1, 2 Rodwell, E., 1, 2
A) is fine. B) I don't want a date and I've partially achieved that with (n.d.) but I don't want (n.d.) to display. If an author has multiple dates I want them all merged and no date to display.
So two questions 1) Is there an easier way of doing this (I tried authorindex first but didn't get it working)? 2) If not, how to patch B)?
biblatexcan automatically index the author names in citations. If you don't want to usebiblatex, there is a package calledauthorindex(which I don't use): https://tex.stackexchange.com/q/24332/35864 – moewe Apr 19 '18 at 16:11