新的格式图列表

新的格式图列表

这就是我要的 : 在此处输入图片描述

我对乳胶确实很着迷。

这是我的 toc 代码:

\renewcommand\tableofcontents{%
\if@twocolumn
  \@restonecoltrue\onecolumn
\else
  \@restonecolfalse
\fi

\chapter*{\contentsname
    \@mkboth{%
       \MakeUppercase\contentsname}{\MakeUppercase\contentsname}}%
{\raggedleft\normalfont Hal \par}%
      \@starttoc{toc}%
 \linespread{1}
 \if@restonecol\twocolumn\fi
}

Hal 是页码。

有人能帮我吗?非常感谢

答案1

以下是使用该tocloft包的解决方案:

\documentclass{book}
\usepackage[indonesian]{babel}
\usepackage{tocloft}
\usepackage{lipsum}

\addto\captionsindonesian{\renewcommand\listfigurename{Daftar Tabel}}

\renewcommand{\cftloftitlefont}{\hfill\large\bfseries\MakeUppercase} 
\renewcommand{\cftafterloftitle}{%
  \hfill\null\\[2\baselineskip]\bfseries No.\hfill\phantom{Hal}Judul\phantom{No.}\hfill Hal}
\renewcommand\cftafterloftitleskip{1\baselineskip}
\renewcommand\cftfigindent{0pt}

\begin{document}

\listoffigures

\begin{figure}[!hb]A\caption{test one}\end{figure}
\begin{figure}[!hb]A\caption{test two}\end{figure}

\end{document}

在此处输入图片描述

相关内容