I have a problem which I can't solve by myself or haven't found anywhere:
I'm citing the same author (and year) with two different sources. In the bibliography the second entry only has a big dash instead of the author again, which I would prefer. Any suggestions to get the same author being displayed again there?
Code example:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{blindtext}
\usepackage[style=authoryear,maxnames=2,sorting=nyt,isbn=true,url=true,block=space,natbib=true]{biblatex}
\addbibresource{bib.bib}
\title{Hi}
\author{MM}
\date{November 2019}
\begin{document}
\maketitle
\section{Introduction}
\blindtext\citep{bundesregierung_klimaschutzgesetz_nodate}\citep{bundesregierung_klimaschutzprogramm2030_2019}
\printbibliography
\end{document}
In the bib.bib file there are these two entries:
@misc{bundesregierung_klimaschutzprogramm2030_2019,
title = {Klimaschutzprogramm 2030},
url = {https://www.bundesregierung.de/breg-de/themen/klimaschutz/klimaschutzprogramm-2030-1673578},
language = {de},
urldate = {2019-11-04},
author = {{Bundesregierung}},
year = {2019},
}
@misc{bundesregierung_klimaschutzgesetz_nodate,
title = {Klimaschutzgesetz},
url = {https://www.bundesregierung.de/breg-de/themen/klimaschutz/kimaschutzgesetz-beschlossen-1679886},
urldate = {2019-11-05},
author = {{Bundesregierung}},
year = {2019},
}
