我想知道是否可以选择在我的文档中添加诸如 \listoffootnotes 之类的内容,就像我可以使用 \listoffigures 或表格一样...
有谁知道怎么做?
我试过这个例子,效果很好。这是我所做的:
\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 -Package是Texlive-Extra的一部分。