仅删除第 0 章的章节编号

仅删除第 0 章的章节编号

我使用以下格式进行分段:

\renewcommand\thesubsection{\thechapter.\arabic{section}.\arabic{subsection}}

在开始第一章之前,我先进行一个介绍,并在其中使用了分段,但我遇到了以下问题:

在此处输入图片描述

以下是本节的代码片段:

\newpage
\pagestyle{plain}
\addcontentsline{toc}{section}{Introduction}
\section*{\centering\Huge\bf\color{myblue}{Introduction}}\par
\vspace{1cm}
\section{Overview}

有人能帮我把介绍部分的分段中的这个 0 去掉吗?

答案1

我认为在前言中使用未编号的部分更清楚,但如果您想这样做那么:

\renewcommand\thesection{\ifnum\value{chapter}>0 \thechapter.\fi\arabic{section}}
% this one shouldn't be needed as it's the default
%\renewcommand\thesubsection}{\thesection.\arabic{subsection}}

相关内容