我想删除图表列表中出现的页码,因为它应该只引用图表的来源。我正在使用 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}