乳胶双重标题

时间:2015-01-28 15:24:36

标签: latex

我有乳胶问题。我想创建一个带有特殊名称和章节的aumomatic编号的标题。

我使用\ chapter {Introduction}命令创建名为Introduction的章节。在内容中,它被列为“1简介”,这是正确的。在文中我得到两个标题。第一个是“第1章”,然后我得到“简介”。所以实际上\ chapter会生成两个标题。我该怎么办?

2 个答案:

答案 0 :(得分:0)

\chapterreport中使用book时,这是默认布局。您需要更新\@makechapterhead才能实现以后的布局:

enter image description here

\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)

您还可以查看MemoirChapterStylesfncychap一大堆不同的章节标题样式,无需手动重新定义\@makechapterhead即可使用。