使用 bigfoot 包的 Subfootnotes

使用 bigfoot 包的 Subfootnotes

我如何使用 bigfoot 包制作子脚注(像在 ConTeXt 中一样)。

我用 Latex 复制了一本书。脚注有两个级别。顶层标有数字 99、100 等。第二层标签是当前脚注加上字母计数器(100、100a、100b、101)。

示例页面: 在此处输入图片描述

答案1

我已经完成了创建新计数器和定义新命令的操作:

\documentclass[a5paper]{article}
\usepackage{bigfoot}

\DeclareNewFootnote{default}

\newcounter{footalt}[footnote]
\def\thefootalt{\thefootnote \alph{footalt}}
\def\footnoteA{\refstepcounter{footalt}%
   \Footnotedefault{\thefootalt}}

\begin{document}
Hello.\footnote{usual footnote} This\footnote{second usual footnote} is a
test.\footnoteA{ sub footnote}
This is a test.\footnoteA{ sub footnote} This is a test. This is a test.

\end{document}

在此处输入图片描述

相关内容