按书本格式编号章节

按书本格式编号章节

我希望目录中有以下格式:

1. Chapter 1
1.1 Section 1
1.2 Section 2

而且我也想使用\chapter但而不是出现。

Chapter 1

Chapter 1

我想

1. Chapter 1.

我尝试过不同的组合(使用该titlesec包但没有成功)。

谢谢你!

答案1

这是一种可能性。titlesec用于更改章节标题的格式和tocloft在目录中的单元编号后添加句点:

\documentclass{book}
\usepackage{titlesec}
\usepackage{tocloft}

\titleformat{\chapter}
  {\normalfont\huge\bfseries}{\thechapter.}{1em}{\Huge}
\renewcommand\cftchapaftersnum{.}

\begin{document}

\tableofcontents
\chapter{A test chapter}
\section{Test section one one}
\section{Test section one two}

\end{document} 

生成的 ToC 的图像:

在此处输入图片描述

新章节标题格式的图片:

在此处输入图片描述

相关内容