所以我正在尝试消除单词Chapter n
,并将其替换为chapter title
。但我希望它显示在目录中...(所以我不能使用\chapter*{...}
)。
有办法实现这个吗?
谢谢!
答案1
使用titlesec
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{}{0pt}{\Huge}
\titlespacing*{\chapter} {0pt}{20pt}{40pt}
\begin{document}
\tableofcontents
\chapter{Some chapter}
\end{document}
答案2
这对我有用:
\chapter*{Introduction}\stepcounter{chapter}\addcontentsline{toc}{chapter}{Introduction}
将该代码放在章节的开头。
答案3
如果您使用book
或report
文档类,并且不想使用诸如 之类的 LaTeX 包titlesec
,则可以通过重新定义(实际上简化了)低级宏 来继续\@makechapterhead
。这是一个使用book
文档类的工作示例;以 开头的行%%
已从 的原始代码中注释掉\@makechapterhead
。
\documentclass{book}
\makeatletter
\def\@makechapterhead#1{%
%%\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
%%\ifnum \c@secnumdepth >\m@ne
%%\if@mainmatter
%% \huge\bfseries \@chapapp\space \thechapter
%% \par\nobreak
%% \vskip 20\p@
%%\fi
%%\fi
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak
\vskip 40\p@
}}
\makeatother
\begin{document}
\tableofcontents
\mainmatter
\chapter{First}
\chapter{Second}
\end{document}
答案4
在序言中添加这样一行
\setcounter{secnumdepth}{-1}