目录中的章节标题

目录中的章节标题

我希望实现这里显示的目标: 章节目录

目录从哪里更改

  1 Introduction

Chapter 1 Introduction

除此之外,目录中还有摘要、致谢、表格列表和图表列表。

当我实施解决方案时,我的表格列表、图片列表、致谢和摘要会相互堆叠。在我添加上述问题中建议的 \titlecontents 代码块之前,我的目录编译后看起来不错(尽管不是我想要的样子)。

堆积 TOC

% MWE
\documentclass{report}
\usepackage{titletoc}% http://ctan.org/pkg/titletoc
\titlecontents*{chapter}% <section-type>
  [0pt]% <left>
  {\addvspace{1em}}% <above-code>
  {\bfseries\chaptername\ \thecontentslabel\quad}% <numbered-entry-format>
  {}% <numberless-entry-format>
  {\bfseries\hfill\contentspage}% <filler-page-format>

\begin{document}

\setcounter{page}{2}
\setcounter{tocdepth}{1}
\tableofcontents
  \cleardoublepage
  \addcontentsline{toc}{chapter}{\listfigurename}
  \listoffigures
  \cleardoublepage
  \addcontentsline{toc}{chapter}{\listtablename}
  \listoftables
\cleardoublepage
\cleardoublepage
  \addcontentsline{toc}{chapter}{Abstract}
  \cleardoublepage


\begin{abstract}
\thispagestyle{plain}
\pagenumbering{roman}
\setcounter{page}{9}
MWE
\end{abstract}

  \addcontentsline{toc}{chapter}{Acknowledgements}
\setcounter{page}{10}
\section*{Acknowledgements}
\thispagestyle{plain}
I would....

\end{document}

相关内容