我希望目录中的章节标题使用阿拉伯数字列出,但不希望章节标题页中出现编号。如下所示:
在标题页中,它应该是这样的:
但没有编号。现在我添加\chap{1. Introduction}
以保留目录中的编号。在序言中,我有:
\usepackage[pagestyles, clearempty]{titlesec}
\newcommand\chap[1]{%
{\centering}
\chapter*{#1}%
\addcontentsline{toc}{chapter}{#1}
\markboth{#1}{#1}
{\titlerule[2pt]\vspace{2.5ex}\filright}
}
有任何想法吗?
答案1
使用titlesec
特征。
\documentclass[a4paper,oneside]{book}
\usepackage[pagestyles,clearempty]{titlesec}
\titleformat{\chapter}[display]
{\huge\bfseries\filright}
{}% no number
{0pt}
{}
[\vspace{2.5ex}{\titlerule[2pt]}]
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{Introduction}
\chapter{Another}
\end{document}
该选项oneside
仅用于减少图像中的页面数量。