like it is said in the heading I need your help at handling dots. I like to have such a footcite and I do not know how to approach it: First Name, Last Name, Title, Location, Publisher, Date And a bibliography like this: Last Name, First Name, Title, Location, Publisher, Date
This is my present code:
\documentclass[a4paper, 11pt]{scrreprt}
% packages
\usepackage[ngerman] {babel}
\usepackage[babel,german=guillemets]{csquotes}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[top = 2cm, right = 4cm]{geometry}
\usepackage{helvet}
\usepackage[singlespacing]{setspace}
\usepackage[style=verbose-ibid]{biblatex}
% font
\renewcommand\familydefault{\sfdefault}
\setlength{\parindent}{0em}
%new commands
\newcommand{\quoteInline}[1]{{\small{\textit{#1}}}}
\newcommand{\quotepar}[1]{\quote {\quoteInline{#1}}}
% bibliography
\bibliography{Literaturverzeichnis}
\renewcommand\labelnamepunct{\addcomma\space}
Thanks for help.
MrXeth

verbose-ibiddoes not work with numbers (the footnote numbers are just incidental and are subject to change: numbers can be skipped if you cite a source multiple times or use normal footnotes in between). So how would the bibliography be numbered? – moewe Dec 20 '18 at 07:26