I am using the nameaddon field to include death dates of certain authors in my bibliography (biblatex-chicago with Biber backend). Thanks to @moewe I am using \AtEveryCitekey{\clearfield{nameaddon}} to suppress this information in the footnotes. As a follow on question:
If my bibliography contains multiple works from the same author, the nameaddon information is repeated for each of his works in the bibliography. I only need the nameaddon info in the first entry.
Related to this, is there a way to change the standard square brackets in the bibliography to parentheses?
\documentclass{article}
\usepackage[notes,isbn=false,backend=biber]{biblatex-chicago}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{A01,
author = {Author, A.},
year = {2001},
nameaddon = {d. 243/857--8},
title = {Alpha},
}
@book{B02,
author = {Author, A.},
year = {2002},
nameaddon = {d. 243/857--8},
title = {Bravo},
}
@misc{C03,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Some text \autocite{A01}.
Some text \autocite{B02}.
Some text \autocite{B02}.
Some text \autocite{C03}.
\printbibliography
\end{document}
