\listoffigures や table を使用できるように、ドキュメントに \listoffootnotes のようなものを追加するオプションがあるかどうか疑問に思っていました...
誰でも方法を知っていますか?
例を試してみましたが、とてもうまくいきました。これが私がやったことです:
\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の一部です。