如何在我的目录中添加特定标题

如何在我的目录中添加特定标题

我想添加“Halaman”作为标题,我在目录列表编号上方用蓝色圆圈圈出,如下所示:

看到这个图片

顺便说一句,“Halaman”在英语中是“页面”的意思。我想把这个词作为描述放在目录列表编号上方。

如何实现这一点?谢谢。

编辑:

这是我的主要代码:

\documentclass[a4paper, 12pt, oneside, openany]{book} 
\usepackage[a4paper, inner=4cm, outer=3cm, top=4cm, bottom=3cm]{geometry} 
\usepackage[onehalfspacing]{setspace} \usepackage{fancyhdr} \usepackage{titlesec} \usepackage{setspace} \usepackage{tocloft} 
\fancyhf{} 
\cfoot{\thepage} 
\linespread{1.5} 
\pagestyle{plain} \renewcommand\cftchapdotsep{\cftdotsep}  
\titleformat{\chapter}[display] {\bfseries\centering} {\chaptertitlename \thechapter}{12pt}{} \titlespacing*{\chapter}{0pt}{10pt}{10pt} \renewcommand{\contentsname}{DAFTAR ISI} \renewcommand{\listtablename}{DAFTAR TABEL} \renewcommand{\listfigurename}{DAFTAR GAMBAR} 
\begin{document} 
\clearpage 
\thispagestyle{empty} 
\frontmatter % 
\pagestyle{fancy} \renewcommand{\headrulewidth}{0pt} \include{cover1} 
\include{cover2} \linespread{1} \tableofcontents  
\listoffigures 
\listoftables 
\mainmatter % 
\end{document}

顺便说一句,我的封面 1 和封面 2 是不必要的,因为还没有完全完成。

答案1

\addtocontents{toc}{\protect\null\protect\hfill{Halaman}\protect\par}在第一个 之前添加\section。这是 MWE:

\documentclass{article}
\begin{document}
\tableofcontents
\addtocontents{toc}{\protect\null\protect\hfill{Halaman}\protect\par}
\section{a}
foo
\section{b}
bar
\section{c}
baz
\end{document}

结果:

结果

相关内容