I'm trying to find an automatic way to add some space between footnotes. I'm now adding a \smallskip after each footnote. It solves the issue, but non elegantly. I'm using reledmac. See below for my comments on why the solution proposed does not work in my example, and I updated the MWE.
\documentclass[foolscap, 11pt]{octavo}
\usepackage{blindtext}
\usepackage{reledmac}
\Xarrangement[A]{paragraph}
\bhooknoteX[A]{\vskip1\baselineskip\noindent}
\afterruleX[A]{-1\baselineskip}
%To have critical footnotes before familiar footnotes
\fnpos{critical-familiar}
\Xbeforenotes[A]{1.8em}
\beforenotesX[A]{1.8em}
\beforenotesX[B]{1.8em}
\Xafterrule[A]{7pt}
\afterruleX[A]{7pt}
\afterruleX[B]{7pt}
\usepackage{hyperref}
\usepackage{polyglossia}
\usepackage{ebgaramond}
\setdefaultlanguage{italian}
\setotherlanguage{hebrew}
\usepackage[style=verbose-trad3, doi=false,isbn=false,url=false,eprint=false]{biblatex}
\begin{document}
\section{First}
This is normal text with a footnote of type A. \footnoteA{\textsc{Title 1} \ Please bring me up! \blindtext[1]} \blindtext[1] And this is critical text:\footnoteA{\textsc{Title 1} \ Please bring me up! \blindtext[1]}
\beginnumbering
\pstart
\begin{quote}
This is a critical text with critical \edtext{\textit{footnotes}} { \Afootnote[nonum, nosep]{\blindtext[1] }}. And \edtext{\textit{again}}{ \Afootnote[nonum, nosep]{This is a footnote }} footnotes.
\end{quote}
\pend
\endnumbering
And this is again \footnoteA{\textsc{Title 1} \ Please bring me up! \blindtext[1]} normal text. \blindtext[2]
This is normal text with a footnote of type A. \footnoteA{\textsc{Title 1} \ Please bring me up! \blindtext[1]} \blindtext[1] And this is critical text:\footnoteA{\textsc{Title 1} \ Please bring me up! \blindtext[1]}
\beginnumbering
\pstart
\begin{quote}
This is a critical text with critical \edtext{\textit{footnotes}} { \Afootnote[nonum, nosep]{\blindtext[1] }}. And \edtext{\textit{again}}{ \Afootnote[nonum, nosep]{This is a footnote }} footnotes.
\end{quote}
\pend
\endnumbering
And this is again \footnoteA{\textsc{Title 1} \ Please bring me up! \blindtext[1]} normal text. \blindtext[2]
\end{document}

\newcommand\myfootnoteA[1]{\footnoteA{#1\smallskip}}– Maïeul Apr 02 '22 at 09:44