I am using the manyfoot package to create three different types of footnotes. How can I change the vertical space between the different types of footnotes in a document?
Here is my MWE:
\documentclass[12pt, twoside]{book}
\usepackage{manyfoot}
\usepackage[nodisplayskipstretch]{setspace}
\SetFootnoteHook{\scriptsize \setstretch{1.2}}
\DeclareNewFootnote{A}[alph]
\SetFootnoteHook{\tiny}
\DeclareNewFootnote{B}[roman]
\begin{document}
Here\footnote{First type of footnotes.} is some text with three\footnoteA{Second type of footnotes.} different types of footnotes\footnote{Another footnote of first type.}\footnoteA{Another footnote of second type.}\footnoteB{Third type of footnotes.}.
\end{document}

