I use biber for citations as follows:
\usepackage[
backend=biber,
style=authoryear,
natbib=true,
url=false,
doi=false,
eprint=false,
maxbibnames=99
]{biblatex}
\renewbibmacro*{name:andothers}{% Based on name:andothers from biblatex.def
\ifboolexpr{
test {\ifnumequal{\value{listcount}}{\value{liststop}}}
and
test \ifmorenames
}
{\ifnumgreater{\value{liststop}}{1}
{\finalandcomma}
{}%
\andothersdelim\bibstring[\emph]{andothers}}
{}}
\addbibresource{bib/refs.bib}
And I have in my refs.bib two differnet authors with the same name. Biber now alwas prints something like this: (D. Name et al., 2017) when using \parencite(Name2017). If I \parencite() an author with a unique surname I only get (Name et al. 2017). How do I change the setting of biber to get alwas only (Name et al. 2017), no matter how often this name is in my bibliography?
Thanks for any help!
maxbibnames=1, but from the given infos that is not sure ... – Mensch Aug 28 '19 at 09:40uniquenameanduniquelisthelp you? If not, please extend the code shown so far into a fully compilable example document with relevant.bibentries that reproduces the issue. See https://tex.meta.stackexchange.com/q/228/35864 and https://tex.meta.stackexchange.com/q/4407/35864. These issues are very likely context dependent, so it is crucial that you test your MWE and make sure that it reproduces the issue at hand. – moewe Aug 30 '19 at 06:48