我知道如何使用 bigfoot 包来为脚注添加脚注。是否可以添加第三层脚注,即为脚注的脚注添加脚注?我没开玩笑。我确实需要这个来做一份古代文学研究报告。
谢谢!
答案1
当然,您可以根据需要创建任意数量的脚注级别,如下例所示。您也可以footnoteD
从中创建一个footnoteB
,但请注意,这可能会严重破坏脚注的排序。所以请考虑您的可怜读者,不要跳过级别,并将脚注的接收量降至最低。
PS:%
每行末尾的 是为了防止LaTeX在文本末尾和脚注符号之间添加空格
\documentclass{article}
\usepackage[ruled]{bigfoot}
\DeclareNewFootnote{A}[arabic]
\DeclareNewFootnote{B}[alph]
\DeclareNewFootnote{C}[Alph]
\DeclareNewFootnote{D}[roman]
\DeclareNewFootnote{E}[Roman]
\DeclareNewFootnote{F}[fnsymbol]
\MakeSortedPerPage{footnoteB}
\MakeSortedPerPage{footnoteC}
\MakeSortedPerPage{footnoteD}
\MakeSortedPerPage{footnoteE}
\MakeSortedPerPage{footnoteF}
\begin{document}
Just some normal text\footnoteA{with footnotes!} and even more text
\footnoteA{This is a nice footnote.%
\footnoteB{Another footnote.%
\footnoteC{Even one more footnote.%
\footnoteD{Omg, when does this end?%
\footnoteE{Please stop!%
\footnoteF{Ok, fine... Just this last one!}
}
}
}
}
}
\end{document}