论文目录

论文目录

我正在写论文,希望目录以居中显示,而不是左对齐。如果您使用\tableofcontents它,它会显示在左侧。

另一个问题是,我如何从目录中删除章节,使其看起来像这样

                        Table of Contents
Chapter
1 General information
  1.1 data
  1.2 good
2 Background
  2.1 yes
  2.2 hello

还有人能帮忙吗?谢谢

答案1

我建议你看一下托克洛夫特包。它提供了很多命令来修改目录(以及图片列表、表格列表和类似的列表)。

以下 MWE 使用了您在帖子中概述的一些标准,说明了该包的使用方法:

\documentclass{book}
\usepackage{tocloft}
\renewcommand\contentsname{Table of Contents}
\renewcommand{\cfttoctitlefont}{\hfill\large\bfseries}
\renewcommand{\cftaftertoctitle}{\hfill}
\renewcommand\cftchapfont{\mdseries} % default: \bfseries
\cftpagenumbersoff{chapter} % suppress mention of page numbers for chapters, etc
\cftpagenumbersoff{section}
\cftpagenumbersoff{subsection}

\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\addtocontents{toc}{\protect{\mdseries Chapter\par}} % insert the "Chapter" header line
\chapter{General information}
\section{Data}
\section{Good}
\chapter{Background}
\section{Yes}
\section{No}
\end{document}

在此处输入图片描述

相关内容