I used to use the apacite package for my references, but for this time, I have to use another template and I don't know how to do that.
Every citation call-out must appear in footnotes using the following order, for instance: Donald Woods Winnicott, Jeu et réalité. L'espace potentiel. Paris : Éditions Gallimard.
Every quoted reference must appear in the references section using the same order.
Do you know which package I have to use for this purpose? Do I need to employ biblatex?
This is my MWE:
\documentclass[hidelinks,12pt,twoside,openright,a4paper]{book}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage[numberedbib,nosectionbib,natbibapa]{apacite}
\bibliographystyle{apacite}
\usepackage{hyperref}
\begin{filecontents}[overwrite]{mybib.bib}
@book{Winnicott1975,
address = {Paris},
author = {Winnicott, Donald Woods},
publisher = {{'E}ditions Gallimard},
title = {Jeu et r{'e}alit{'e}. {L}'espace potentiel},
year = {1975}}
\end{filecontents}
\begin{document}
\chapter{Un chapitre}
Some texte\footnote{\citet{Winnicott1975}}.
\bibnewpage
{%start grouping
\raggedright
%\nocite{}
\bibliography{mybib}
}%end grouping
\end{document}
