I have inherited a latex stylesheet and document, in it, the bibliography seems to detect when there are multiple works in a row, with the same author, when this occurs it replaces the author with a line, i.e:
Crisp, Oliver. Divinity and Humanity. New York: Cambridge, 2007.
——— God Incarnate. New York: T&T Clark, 2009.
——— The Word Enfleshed: Exploring the Person and Work of Christ. TBC: TBC, 2016.
I wonder if anyone can point me in the right direction to start working out how to get rid of this behaviour? I notice there is this in the .sty file:
\setlength\bibindent{\parindent}
\renewcommand\@openbib@code{%
\setstretch{1}
\singlespacing
\setlength\leftmargin{\bibindent}
\setlength\itemindent{-\bibindent}
\addtolength\itemindent{\labelsep}
\addtolength\itemindent{\labelwidth}
\setlength\itemsep{\tf@singlelineskip}
\setlength\parsep{\z@}}
% set formatting defaults and pass options
\PassOptionsToPackage%
{isbn=false, autolang=other, footmarkoff, backend=biber}%
{biblatex-chicago}
\if@authordateformat
\PassOptionsToPackage{authordate}{biblatex-chicago}
\fi
% adjustments to \printbibliography formatting
\if@appendbibformat
\AtEndPreamble{%
\@ifpackageloaded{biblatex}%
{%
\if@authordateformat
\DefineBibliographyStrings{english}{%
bibliography = {References}}
\else
\DefineBibliographyStrings{english}{%
references = {Bibliography}}
\fi
\renewcommand{\bibsetup}{%
\addcontentsline{toc}{\tf@topsecname}{\bibname}
\singlespacing}
\renewcommand{\bibitemsep}{1\baselineskip}
\renewcommand{\bibhang}{0.5in}
}{}}
\fi