如何使用两种脚注?

如何使用两种脚注?

我想使用两种脚注:阿拉伯语和字母。我刚刚尝试使用以下命令:\renewcommand{\thefootnote}{\roman{footnote}},但它会影响整个文档。我该怎么办?

答案1

目前还不清楚您是否希望对整个文档或每页的脚注进行编号,但 manyfoot 包允许您执行任一操作。下面的命令用于(在书籍文档类中)使用符号添加一组额外的脚注,第二组脚注在每一页上重置。

\usepackage[perpage]{manyfoot}
\DeclareNewFootnote{B}[fnsymbol]

您定义的新脚注集的命令是 \footnoteA 和/或 \footnoteB。

答案2

使用manyfoot

\documentclass{article}
\usepackage{manyfoot}
\DeclareNewFootnote{A}[alph]
\DeclareNewFootnote{B}[arabic]
\setlength{\textheight}{4cm}
\begin{document}
  Here\footnoteA{Alpha foot note} and there\footnoteB{arabic foot note}
\end{document}

在此处输入图片描述

使用nccfoots

\documentclass{article}
\usepackage{nccfoots}
\setlength{\textheight}{4cm}
\begin{document}
  Here\Footnote{a}{Alpha foot note} and there\Footnote{1}{arabic foot note}
\end{document}

相关内容