论文中使用 documentclass “报告” 的带有三个子标题的图表列表

论文中使用 documentclass “报告” 的带有三个子标题的图表列表

我如何定制 Latex 来制作如图所示格式的图表列表。

梅威瑟:

\documentclass[12pt]{report}
\begin{document}
\include{listofsymbols}
\end{document}

所需格式

答案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}

相关内容