如何将脚注嵌套在脚注中?

如何将脚注嵌套在脚注中?

我正在尝试创建嵌套脚注,类似于《无尽的玩笑》(只有脚注而不是尾注)。我读过脚注接收发布并找到了 Bigfoot 包,它似乎具有我想要的行为,即

大脚

特别是脚注2正是我想要的。

问题是我在整篇文章中大量使用了正常的 \footnote,但是 bigfoot 不遵循既定的脚注编号。我该怎么办?

答案1

确保您正在使用:

\DeclareNewFootnote{default}

以下是如何使用 '访问' 普通脚注的方法bigfoot。例如:

\documentclass[12pt]{article}
\usepackage{bigfoot,lipsum}
\DeclareNewFootnote{default}
\DeclareNewFootnote{A}[alph]

\begin{document}

\footnote{This is the default level%
  \footnoteA{And this is the A-level.}}%
\lipsum[1]

\footnote{This is the default level%
  \footnoteA{And this is the A-level.}}%
\lipsum[1]

\end{document}

相关内容