我有乳胶问题。我想创建一个带有特殊名称和章节的aumomatic编号的标题。
我使用\ chapter {Introduction}命令创建名为Introduction的章节。在内容中,它被列为“1简介”,这是正确的。在文中我得到两个标题。第一个是“第1章”,然后我得到“简介”。所以实际上\ chapter会生成两个标题。我该怎么办?
答案 0 :(得分:0)
在\chapter
或report
中使用book
时,这是默认布局。您需要更新\@makechapterhead
才能实现以后的布局:
\documentclass{report}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@makechapterhead}% <cmd>
{\@chapapp\space\thechapter\par\nobreak\vskip 20\p@}% <search>
{\Huge\thechapter\space}% <replace>
{}{}% <success><failure>
\makeatother
\begin{document}
\tableofcontents
\chapter{ChapterName}
\end{document}
答案 1 :(得分:0)
您还可以查看MemoirChapterStyles或fncychap一大堆不同的章节标题样式,无需手动重新定义\@makechapterhead
即可使用。