我希望目录中有以下格式:
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 的图像:
新章节标题格式的图片: