章节编号

章节编号

我正在写我的硕士论文。我刚开始使用 LaTeX。我正在写第一章。我使用了\chapter{Introduction},但是当我使用创建一个部分时\section{abcd},即使章节号为 1,部分号也是 0.2。我希望部分号为“章节号”。“部分号”(例如,第一章第一部分为 1.1)。

我的代码:

\documentclass[12pt,a4paper]{report}  
\usepackage{graphicx}
\usepackage[margin=1in]{geometry}
\begin{document}
\begin{abstract}
\end{abstract}

\tableofcontents
\listoffigures
\listoftables

\chapter{introduction}
here goes my text......
\section{motivation}

\chapter{background}  % corrected typo: \chatper{background}

\end{document}

我希望第一章的章节号为 1 而不是 0,并且第一章第一节的节号为 1.1。

相关内容