I'm using this code
\documentclass{book}
\usepackage{bigfoot}
\DeclareNewFootnote[para]{default}
\DeclareNewFootnote[para]{B}
\MakeSortedPerPage{footnoteB}
\renewcommand{\thefootnoteB}{*}
\begin{document}
\setlength{\footnotesep}{5mm} %allowing some space between the line and first footnote
% \setlength{\footskip}{0pt} %doesnt do the job
text one\footnote{set 1}
text two\footnoteB{set 2}
text three\footnoteB{set 2}
\end{document}
to create two sets of footnotes. I also need some space between the first footnote and the footnote rule, but not between footnotes. Is this possible ?
