目录和图表列表:删除出现的页码

目录和图表列表:删除出现的页码

我想删除图表列表中出现的页码,因为它应该只引用图表的来源。我正在使用 tocloft。以下代码删除了第一个数字,但我觉得这是处理该问题的正确方法。

\renewcommand{\cftfigpagefont}[1]{}
\renewcommand{\cftfigafterpnum}{\cftparfillskip}

答案1

只需使用

\cftpagenumbersoff{figure}

完整示例:

\documentclass{article}
\usepackage{tocloft}

\cftpagenumbersoff{figure}

\begin{document}

\listoffigures

\begin{figure}
\caption{test}
\end{figure}

\end{document}

在此处输入图片描述

相关内容