I require a certain formatting for my referencing. Here is what I need:
Citations are footnotes, parentheses around location and date. Bibliography should not have the parentheses around location and date; and the publisher should be before the location, separated with a comma.
First occurrence:
John Doe, A Nice Book (London, 2022), p. 12.
Second occurence:
Doe, A Nice Book, pp. 13 - 15.
Bibliography:
John Doe, A Nice Book, Random House, London, 2022.
The footnotes could be easily done via autocite=footnote and \let\cite\autocite, and the commas could be done via \renewcommand*{\newunitpunct}{\addcomma\space}.
Removing the publisher from citations could be done via \AtEveryCitekey{\clearlist{publisher}}.
However, I have no idea how to do the parentheses. Whilst it is similar to the style produced by using biblatex-chicago, it is also different in many ways, such as the bibliography entry.
Any help?
MWE:
\documentclass{article}
\begin{filecontents}{hi.bib}
@book{eg,
author = {John Doe},
title = {A Nice Book},
location = {London},
date = {2022},
publisher = {Random House}
}
\end{filecontents}
\usepackage[style = verbose, autocite = footnote]{biblatex}
\usepackage{csquotes}
\addbibresource{hi.bib}
\let\cite\autocite
\let\cites\autocite
\renewcommand*{\newunitpunct}{\addcomma\space}
\AtEveryCitekey{\clearlist{publisher}}
\begin{document}
First occurence \cite[12]{eg}, second occurence \cite[13-15]{eg}.
\printbibliography
\end{document}


\printlist{location}you need to shoehorn in the publisher. If you want help with that, please open a new question with your exact requirements. It is very awkward to post longer sections of code in the comments. – moewe Aug 02 '22 at 04:47