脚注:脚注内的脚注内的脚注

脚注:脚注内的脚注内的脚注

受到这个问题的启发脚注的脚注(有人问是否可以在脚注中添加脚注引用),我问的是更复杂的事情。不过,在我提问之前,让我先说一下我不是在寻找标准的排版实践,而是问自己是否可以做点什么。我怎样才能将脚注部分放在另一个脚注部分中,即

This is the outer block of[1] text[2].

---- % Begin first footnote (scriptsize)
[1] Here we start the first[*] footnote to main.
[2] Here we start the second footnote to main.

 ---- % Begin second footnote (even smaller then scriptsize)
 [*] Here is the first[+] footnote[-] to the first footnote block.

   ---- % Begin third footnote (even smaller then the last one)
   [+] Here is the first[a] footnote to the second[b] footnote block.
   [-] Here is the second footnote to the second[c] footnote block.

等等...我正在寻找脚注的全部内容,或者至少是我想要指定的深度。

答案1

软件包bigfootmanyfoot具有此功能。请参见来自bigfoot文档

在此处输入图片描述

不幸的是,脚注的自定义bigfoot没有很好的记录(David 称之为“专家选项”并建议阅读代码)。以下是一个例子:

\documentclass{article}
\usepackage[ruled]{bigfoot}
\DeclareNewFootnote{A}
\DeclareNewFootnote{B}[alph]
\MakeSortedPerPage{footnoteB}
\makeatletter
\let\@makefntext@orig\@makefntext
\FootnoteSpecific{B}\def\@makefntext{\@makefntext@orig\tiny}
\makeatother
\begin{document}

Text\footnoteA{Footnote\footnoteB{Another footnote}}.  More
text\footnoteA{This footnote goes to the first level}\footnoteB{And
  this to the second one}.  

\end{document}

在此处输入图片描述

相关内容