Я использую пакет manyfoot для создания трех разных типов сносок. Как изменить вертикальное расстояние между разными типами сносок в документе?
Вот мой 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}
решение1
Каждой новой сноске присваивается новая «вставка» с именем, \footins
за которым следует метка; в данном случае \footinsA
и \footinsB
. Вставка — это длина, количество и поле с тем же значением регистра.
Обычно длина \footins
используется для хранения расстояния над \footnoterule
. Для новых сносок она используется для хранения интервала между группами.
\documentclass[12pt, twoside]{book}
\usepackage{manyfoot}
\usepackage[nodisplayskipstretch]{setspace}
\SetFootnoteHook{\scriptsize \setstretch{1.2}}
\DeclareNewFootnote{A}[alph]
\SetFootnoteHook{\tiny}
\DeclareNewFootnote{B}[roman]
\setlength{\skip\footinsA}{0pt}
\setlength{\skip\footinsB}{0pt}
\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}