如何调整回忆录课程中段落脚注之间的脚注间距?

如何调整回忆录课程中段落脚注之间的脚注间距?

我想减少回忆录中段落脚注之间的间距。例如:

\documentclass{memoir}
\paragraphfootnotes
\begin{document}
\footnote{A footnote.}\footnote{How do I get this footnote closer to the previous one?}
\end{document}

答案1

来自memoir 基本用户手册

标记排版在宽度为 的框中。\footmarkwidth如果为负数,标记将缩进到边距,如果为零,标记将左对齐,如果为正数,标记将缩进。标记后面是脚注文本。文本的第二行和后续行\footmarksep从框的末尾偏移长度。脚注中段落的第一行缩进\footparindent。这些长度的默认值为:

\setlength{\footmarkwidth}{1.8em}
\setlength{\footmarksep}{-\footmarkwidth}
\setlength{\footparindent}{1em}

下面我已调整\footmarkwidth.5em

在此处输入图片描述

\documentclass{memoir}
\paragraphfootnotes
\setlength{\footmarkwidth}{.5em}
\begin{document}
\footnote{A footnote.}\footnote{How do I get this footnote closer to the previous one?}
\end{document}

请注意,如果 的值太小,第一个脚注的编号将延伸到左边距。如果您想使用更小的 做一些特别的事情,\footmarkwidth可能必须利用。\makefootmarkhook\footmarkwidth

相关内容