4

我想知道是否可以选择在我的文档中添加诸如 \listoffootnotes 之类的内容,就像我可以使用 \listoffigures 或表格一样...

有谁知道怎么做?

4

2 回答 2

2

我试过这个例子,效果很好。这是我所做的:

\usepackage{tocloft}

%% Footnotes-Listing %%
\newcommand{\listfootnotesname}{List of Footnotes}% 'List of Footnotes' title 
\newlistof[chapter]{footnotes}{fnt}{\listfootnotesname}% New 'List of...' for footnotes 
\let\oldfootnote\footnote % Save the old \footnote{...} command 
\renewcommand\footnote[1]{% Redefine the new footnote to also add 'List of Footnote' entries. 
    \refstepcounter{footnotes}% Add and step a reference to the footnote/counter. 
    \oldfootnote{#1}% Make a regular footnote. 
    \addcontentsline{fnt}{footnotes}{\protect 
\numberline{\thefootnotes}#1}% Add the 'List of...' entry. 
}

之后我可以使用命令\listoffootnotes在此处输入图像描述

tocloft -PackageTexlive-Extra的一部分。

于 2011-08-02T15:46:22.147 回答
0

我还没有尝试过,但据我所知,使用 tocloft 包应该可以完成你需要的事情。有关创建自定义列表的更多详细信息,请参阅文档中的第 2.4 章。

这是一个关于如何完成的示例。

于 2010-09-30T07:49:42.403 回答