Here is minimal example (edited after this)--
\documentclass{article}
\usepackage[style=authoryear-comp,natbib,
uniquename=false,
uniquelist=minyear,
backend=bibtex]{biblatex}
\addbibresource{\jobname.bib}
\begin{filecontents}{\jobname.bib}
@article{one,
author = "Last, F.",
title = {Title},
journal = {A Journal},
year = {2011},
}
@article{two,
author = "Last, F.",
title = {Title2},
journal = {B Journal},
year = {2011},
}
@article{three,
author = "Last, First",
title = {Title3},
journal = {C Journal},
year = {2013},
}
\end{filecontents}
\begin{document}
\cite{one,two,three}
\printbibliography
\end{document}
Here is the result --
Last, 2013; Last 2011a,b
However, I would like to have it something like --
Last, 2011a,b, 2013
Which I could get if I have all author names identical (including first and last names). I can't really modify the bib entry as long as it is the last option.
Seeing authoryear-comp will also set
autocite=inline, labeldate=true, uniquename=full, uniquelist=true
So, I have already tried different settings using uniquename and uniquelist of biblatex package (documentation), but could not get the desired result. There are some examples given in sec. 4.11.4 of the documentation but it is becoming more ambiguous to me. Can someone give me correct settings and make it little bit Disambiguious?
sortname = {Last, First},. This should produce your desired output. But I cannot imagine how or why BibTeX should produceLast, 2013; Last, 2011a,b, 2012given the intput you have. There is no reason to treat author "Last" the same as author "First Last" ... and, more importantly, (in English at least) doing so seems to add to the confusion of an already confusing set of references. My advice: if they are all the same person, fix your.bibentries; if they aren't all the same person, do not let BibTeX treat them as the same. – jon Jul 03 '16 at 23:10sortname=...in each bib item. If so, I can't really do that, I have a big database and I can't change the each entry. But, you point is valid about Last. My main argument is between Last First and Last F. so I have modified the example. – novice Jul 04 '16 at 06:33.bibfile by either 'fixing' the actualauthor =lines or addingsortname =. Any reasonably editor should make this snap, and regexp could certainly do it with little difficulty. (With Biber you could even do it 'on-the-fly', but not with any less difficulty than simply doing it to fix the.bibfile.) – jon Jul 05 '16 at 02:30