I'm currently writing a paper and my supervisor has given me specific citation rules but no template.
One of these rules is:
- Citation numbers are in superscript in the text but at the bottom of the page in normal script and in parentheses.
Here is my minimal working example:
\documentclass[ngerman, 12pt,a4paper]{article}
\usepackage[ngerman]{babel} % Language specification
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} % Required to output umlauts in a PDF
\usepackage{pslatex}
% bibliography and citation management
\usepackage[backend=biber, style=verbose]{biblatex}
\addbibresource{literatur.bib}
\usepackage{filecontents}
\begin{filecontents}{literatur.bib}
@Book{zimmermann1973judeneid,
Title = {Die Entwicklung des Judeneids},
Author = {Volker Zimmermann},
Publisher = {Peter Lang},
Year = {1973},
Series = {Europäische Hochschulschriften. Reihe I. Deutsche Literatur und Germanistik},
number = {56},
Location = {Frankfurt am Main},
Subtitle = {Untersuchungen und Texte zur rechtlichen und sozialen Stellung der Juden im Mittelalter}
}
\end{filecontents}
\begin{document}
Some text\footcite{zimmermann1973judeneid}
\printbibliography[title={Literatur}]
\end{document}
It now looks like
It should look like
Thank you very much for any help and suggestions on how to manage the problems!
Comment: this is an edited version of the original question, this is why I let the numbering of the problem in, even when there is only 1. since the posted answer tackles 1. The previous question is separated into two threads.



\footciteinternally just uses footnote, issue 1 would indeed ideally be solved by just redefining the footnote output. What about separating that issue from the rest of this question in a new question. It should be fairly straightforward for people who know about this kind of thing. – moewe Sep 08 '19 at 13:10