manyfoot パッケージを使用して、3 種類の異なる脚注を作成しています。文書内の異なる種類の脚注間の垂直方向のスペースを変更するにはどうすればよいですか?
これが私の 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}