我正在使用 endfloat 包将所有图形放在文档末尾。我想生成图形列表,而不是图形本身。从本网站找到的答案中,我能拼凑出的最好的答案是:
% Places all the figures after the references and generates a list of references
\usepackage[figuresonly,nomarkers]{endfloat}
% Used to reformat the list of figures
\usepackage[tocindentauto]{tocstyle}
%the previous line resets it
\usetocstyle{KOMAlike}
% To delete the list of figures and figures genereated after the references
\nofiles\renewcommand{\processdelayedfloats}{}
在我的文档结束之前,我使用以下命令从列表中删除页码:
\pagenumbering{gobble}
此方法还会删除图表列表。我想保留所有参考资料和超链接。我想要做的是在图表列表之后停止文档。这必须在 Latex 代码本身中完成,而不是事后完成。
答案1
事实上这很简单。我只是把它放在命令\listoffigures
后面\pagenumbering{gobble}
。