答案1
我希望这对你有用。
% lofprob.tex SE 524226 column headers in LoF
\documentclass{report}
\usepackage{tocloft}
% center the caption texts
\renewcommand{\cftfigaftersnumb}{\hfill}
\renewcommand{\cftfigleader}{\hfill}
\begin{document}
% Add the column headers
\addtocontents{lof}{\textbf{Figure} \hfill \textbf{Caption} \hfill
\textbf{Page}\par}
\addtocontents{lof}{\textbf{Number} \hfill \textbf{Number}\par}
\listoffigures
\clearpage
\chapter{A chapter}
\begin{figure}
\centering
FIGURE
\caption{Watermark on the bank currency note (12)}
\end{figure}
\begin{figure}
\centering
FIGURE
\caption{Various classifications of watermarking}
\end{figure}
\begin{figure}
\centering
FIGURE
\caption{Image watermark embedding scheme}
\end{figure}
\end{document}