我想知道我是否可以选择在我的文档中添加类似\ listoffootnotes的内容,就像我可以使用\ listoffigures或table ...
任何人都知道怎么做?
答案 0 :(得分: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 -Package是Texlive-Extra的一部分。
答案 1 :(得分:0)
我没有试过这个,但从我收集到的内容应该可以使用tocloft软件包来完成你需要的东西。有关创建自定义列表的详细信息,请参阅documentation中的第2.4章。
Here is an example如何做到这一点。