[Tex/LaTex] using biblatex -formatting References section

biblatexindentation

I am studying biblatex and I'm using just a basic file…

\documentclass[12pt,a4paper]{article}
%\usepackage[style=authortitle]{biblatex}
%\usepackage[style=authoryear]{biblatex}
%\usepackage[style=numeric]{biblatex}
\usepackage[style=verbose]{biblatex}

%\labelnamepunct
\addbibresource{animation}

\begin{document}

he said this \footcite{Branston2006}
...
and he said that\parencite{Branston2006}

Edwards\footcite{Edwards2005}

Hammel\footcite{Hammel2007}

Hornung\footcite{Hornung2005}

Maestri\footcite{Maestri1996}

\printbibliography
\end{document}

Which gives me the References section. But with the second line of each reference INDENTED.

  1. How can I get rid of that indentation so that it simply flows on to the next line?

  2. How can I rename the 'References' section to 'List of References'?

Best Answer

Because you're using the article document class, you should insert the following command in your document's preamble in order to change the caption of the References section to "List of References":

\renewcommand\refname{List of References}

(If you were using the book or report document class, you'd type \renewcommand\bibname{List of References}.) Second, in order to suppress the hanging indentation of the second and subsequent lines of bibliography items, you should add the command

\setlength\bibhang{0pt} % default value: \parindent

to the preamble, after loading biblatex. Happy (bibla)TeXing!