List of footnotes in latex
I was wo开发者_StackOverflow社区ndering if I'll have the option to add something like \listoffootnotes in my document like I can use \listoffigures or tables...
Anyone knows how?
I tried the example and it worked very well. Here is what I've done:
\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.
}
After tha I could use the command \listoffootnotes:
The tocloft-Package is Part of Texlive-Extra.
I haven't tried this, but from what I gather it should be possible to accomplish what you need using the tocloft package. See chapter 2.4 in the documentation for more details on creating custom lists.
Here is an example on how it can be done.
精彩评论