I am writing my thesis and I have to change the appearance of my entries. Currently it looks like this:
but I need it to look like this:
I know how to get rid of the bold in the entry, but I need the Author-year in bold above the entry. This far I have basically no idea how to do that.
Excerpt of my code:
%% Bibliography using Biblatex
\usepackage[autolang=hyphen,style=authoryear-ibid,giveninits=true,uniquename=init,isbn=false,doi=false,dashed=false,backend=biber,maxnames=3,minnames=1,maxbibnames=99]{biblatex}
% statt des in ngerman üblichen u.a. wird ein et al. gesetzt
\DefineBibliographyStrings{ngerman}{
andothers = {{et,al\adddot}},
}
% Semikolon trennt Autoren
\renewcommand{\multinamedelim}{\addsemicolon\space}%
\renewcommand{\finalnamedelim}{\addsemicolon\space}%
\setcounter{biburlnumpenalty}{100}
\setcounter{biburlucpenalty}{100}
\setcounter{biburllcpenalty}{100}
% Increase spacing between two bib items
\setlength{\bibitemsep}{0.5\baselineskip}
\addbibresource{projektarbeit.bib} % Bibtex file
% Make bold labels in bibliography!
% From: http://tex.stackexchange.com/questions/91570/bibliography-with-biblatex-how-to-achieve-bold-labels-using-the-authoryear-styl
\usepackage{xpatch}
%\xpretobibmacro{author}{\mkbibbold\bgroup}{}{}
%\xapptobibmacro{author}{\egroup}{}{}
\xpretobibmacro{bbx:editor}{\mkbibbold\bgroup}{}{}
\xapptobibmacro{bbx:editor}{\egroup}{}{}
\renewcommand*{\labelnamepunct}{\mkbibbold{\addcolon\space}}
\usepackage{settings/bibspacing}
% Spacing between references. This package requires the file bibspacing.sty
\setlength{\bibspacing}{\baselineskip}
\documentclass[12pt,a4paper,oneside,headsepline,captions=tableheading,toc=bibliography,openany,chapterprefix]{scrbook}
\begin{document}
some text \footcite{Buergel2011}
\end{document}


