[Tex/LaTex] Dots in Bibliography

biblatexbibliographiesciting

I like to have footcite likt this:
First Name, Last Name, Title, Location, Publisher, Date and a bibliography like this: Last Name, First Name, Title, Location, Publisher, Date

My code:

\documentclass[a4paper, 11pt]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman] {babel}
\usepackage[autostyle,german=guillemets]{csquotes}
\usepackage[style=verbose-ibid, autocite=footnote]{biblatex}

\DeclareDelimFormat[bib]{nametitledelim}{\addcomma\space}

\renewcommand{\bibfootnotewrapper}[1]{%
  \bibsentence#1}

\renewcommand*{\finentrypunct}{}

The problem is the dot between the title and the location. I also like to have a enumerated bibliography like
-source1
-source2

Thank you for helping!

Best Answer

You seem to want to turn all generic punctuation in the bibliography and citation into a comma instead of a full stop/period. That can be achieved easily by redefining \newunitpunct. If you redefine \newunitpunct you don't even need to modify nametitledelim.

Recycling the MWE from Biblatex remove dot at the end at footcite and bibliography

\documentclass[a4paper, 11pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman] {babel}
\usepackage[autostyle,german=guillemets]{csquotes}
\usepackage[style=verbose-ibid, autocite=footnote]{biblatex}

\renewcommand*{\newunitpunct}{\addcomma\space}

\renewcommand{\bibfootnotewrapper}[1]{%
  \bibsentence#1}

\renewcommand*{\finentrypunct}{}

\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem\autocite{sigfridsson} ipsum\autocite{nussbaum} dolor\autocite{sigfridsson}
\printbibliography
\end{document}

Footnote 2: "Martha Nussbaum, Aristotle’s »De Motu Animalium«, Princeton: Princeton University Press, 1978" the bibliography entry is similar. The entry for <code>sigfridsson</code> also features commas now.

Related Question