나는 세 가지 유형의 각주를 만들기 위해 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}