z*****n 发帖数: 7639 | 1 In book.sty, the default chapter typesetter is
Chapter 1. One chapter starts...
and continues...
How can I modify it to be:
1 One chapter starts...
and continues
....
Thanks in advance. | g*********r 发帖数: 124 | 2 把下面的代码添加到导言区
\makeatletter
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
\if@mainmatter
\huge\bfseries\thechapter
\par\nobreak
\vskip 20\p@
\fi
\fi
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak
\vskip 40\p@
}}
\makeatother
【在 z*****n 的大作中提到】 : In book.sty, the default chapter typesetter is : Chapter 1. One chapter starts... : and continues... : How can I modify it to be: : 1 One chapter starts... : and continues : .... : Thanks in advance.
|
|