I am currently writing a thesis where I use two different articles from the same author from the same year. As a result when using footnotes it appends a letter to the year, e.g. 2008a, 2008b, 2008c and so on. I don't need that nor am I allowed to do so judging from the guidelines I received.
I fail to understand why this is happening and what my steps would be to remove it completely. I read about a "uniquename" flag in the documentation but that seems to be for a different kind of issue.
I am importing biblatex like this (which is the standard way afaik): https://github.com/andygrunwald/FOM-LaTeX-Template/blob/master/thesis_main.tex#L120
Anyone got any input for me where I should start to get rid of this? Thanks a lot.
My example:
Import of biblatex and configuration
\usepackage[
backend=biber,
style=ext-authoryear,
maxcitenames=3,
maxbibnames=999,
mergedate=false,
date=iso,
seconds=true,
urldate=iso,
innamebeforetitle,
dashed=false,
autocite=footnote,
doi=false,
useprefix=true,
mincrossrefs = 1
]{biblatex}
I used the following sources as examples:
@online{example-1,
usera = {Example One},
title = {Example One},
author = {Good Author},
organization = {},
location = {},
date = {2018-12-20},
urldate = {2019-01-02},
urltime = {23:30},
url = {https://cran.r-project.org/doc/manuals/r-release/fullrefman.pdf},
}
@online{example-2,
usera = {Example Two},
title = {Example Two},
author = {Good Author},
organization = {},
location = {},
date = {2018-12-20},
urldate = {2019-01-02},
urltime = {23:30},
url = {https://cran.r-project.org/doc/manuals/r-release/fullrefman.pdf},
}
And made a citation like this:
Example citations here.\footcite[][]{example-1} \footcite[][]{example-2}
This results in:
Author 2018a Author 2018b
I would like to get rid of the additional letters (a and b).
