回忆录:脚注中枚举后的缩进

回忆录:脚注中枚举后的缩进

我有一个脚注,其中包含一个枚举,后面是一两行文本。枚举后的行看起来“不对劲”,我希望它们缩进到与枚举前的行相同的位置,即。这些根据应垂直对齐(参见图中的红线和蓝线)。

我曾尝试用 进行实验\hspace,但似乎找不到要插入的正确长度......

例子

梅威瑟:

\documentclass{memoir}
\usepackage[shortlabels]{enumitem}

%%%-----------------------------------------------------------------------------

\begin{document}

Paragraph talking about some person.\footnote{These are their likely children:{\scriptsize
\begin{enumerate}[a), labelindent=1cm, leftmargin=*]
\item \emph{John Doe}, who did this and that;
\item \emph{Jane Doe}, who did other things;
\item Possibly \emph{Jack Doe} who became known elsewhere.
\end{enumerate}}%
%\hspace*{???}%
According to a certain source, they had 5 children of which two are thus unknown.}

\end{document}

答案1

这是你可以尝试的东西。这种设置是我在设计的书中经常使用的。请注意,我们使用\scriptsize脚注而不是\footnotesize(这并不重要)

\documentclass{memoir}
\usepackage[shortlabels]{enumitem}

% sample text
\usepackage{kantlipsum}

\setlength\footmarkwidth{1em}
\setlength\footmarksep{0em}
\setlength\footparindent{1.5em}
\addtolength\footnotesep{2pt}
%\footmarkstyle{\textsuperscript{#1}\hphantom{\textsuperscript{9}}}
\footmarkstyle{\textsuperscript{#1}\hspace{0.25em}}
%\renewcommand*\footnoterule{}
\addtolength{\skip\footins}{10pt}
\renewcommand\foottextfont{\scriptsize}%\RaggedRight}
\renewcommand*\footfudgefiddle{80}

\begin{document}

Paragraph talking about some person.\footnote{These are their likely children:
\begin{enumerate}[(a),,noitemsep]
\item \emph{John Doe}, who did this and that;
\item \emph{Jane Doe}, who did other things;
\item Possibly \emph{Jack Doe} who became known elsewhere.
\end{enumerate}
According to a certain source, they had 5 children of which two are
thus unknown.}

Test\footnote{\kant[1]}


\end{document}

相关内容