章节标题中的编号错误

章节标题中的编号错误

不同部分的编号显示为 0.1、0.2,而不是 1、2 ....我应该怎么做才能纠正这个问题,我的代码如下:

\documentclass[12 pt]{report}
\usepackage[left= 12 mm,top=1 in,bottom=2 in ]{geometry}
 \geometry{a4paper}

\begin{document}
\title{chapter1}
\maketitle
\section{Introduction}

答案1

您以 开始\section,它被算作chapter.section。但是您没有定义章节,因此它使用0.1。请改用 类或在使用前article定义一个\chapter{...}\section{...}

答案2

我认为这是需要的,如果report使用,分段级别层次结构是(从顶部开始)

\part

\chapter

\section

\subsection

\subsubsection

\paragraph

\subparagraph

在我看来\paragraph\subparagraph不应该使用,因为层次太深了。

\documentclass[12 pt]{report}
\usepackage[left= 12 mm,top=1 in,bottom=2 in ]{geometry}
 \geometry{a4paper}

\begin{document}
\title{My nice document}
\maketitle
\chapter{Introduction}

\section{Some text}

\subsection{some minor text}

\chapter{Even more content in here}

\end{document}

相关内容