I need a very specific layout for my university.
My current MWE looks like this:
\documentclass[paper=a4,]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[style=verbose,backend=biber]{biblatex}
\begin{filecontents*}{document.bib}
@book{Belyi.2015,
year = {2015},
title = {{S}tates and markets in hydrocarbon sectors},
author = {Belyi/Andrei/Talus},
}
\end{filecontents*}
\addbibresource{document.bib}
\renewcommand{\mkbibnamelast}[1]{\mkbibemph{#1}\addcomma}
\DeclareFieldFormat*{title}{#1\addcomma}
\DeclareFieldFormat{parens}{\mkbibparens{#1}}
\renewbibmacro*{date}{\printtext[parens]{\printdate}}
\begin{document}
First Note\footnote{\cite{Belyi.2015}}.
Second note\footnote{\cite{Belyi.2015}}.
\printbibliography
\end{document}
The current output looks like this:
Belyi/Andrei/Talus, States and markets in hydrocarbon sectors, (2015)
Belyi/Andrei/Talus, States and markets in hydrocarbon sectors
Now I want to get rid of the title in the second citation. My guess is it works somehow with ifciteseen but I can't seem to get it right.
- Bonus: Is there a possibility to end all citations with a dot? My current solution to this is to end the footnote but it would be nice if latex could do it for me.

biblatextutorial that covers style writing and modification in depth. There are some great beginner's resources at https://tex.stackexchange.com/q/13509/, but if they cover modifications of styles, they only mention a few special cases and don't give an overall introduction into style writing. Paul Stanley's tutorial mentions a few modifications and Dominik Waßenhoven's German article walks you through hisbiblatexstyle (note that the article is ten years old now, some things have changed). – moewe Aug 30 '18 at 11:12