更改章节内的小节编号

更改章节内的小节编号

我有章节,我希望小节编号与章节编号相对应。

例如:

Chapter 1

1.1 blah blah
1.2 hello

目前,我有:

Chapter 1

1 blah blah
2 hello

这是我的序言代码:

\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{fixltx2e}
\usepackage{grffile}
\usepackage[font=small,labelfont=bf]{caption}
\usepackage{floatrow}
\usepackage{amsmath}
\usepackage{longtable}
\usepackage{tocbibind}
\usepackage{fancyhdr}
\usepackage{titlesec}
\usepackage{epstopdf}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{tabu}
\usepackage{ragged2e}
%\usepackage[justification=centering]{caption}
\usepackage[titles]{tocloft}
\usepackage{caption}
\usepackage{tocloft}

\newcolumntype{L}{>{\RaggedRight\arraybackslash}X}

\titleformat{\section}
  {\normalfont\fontsize{14}{12}\bfseries}{\thesection}{1em}{}
\makeatletter
\renewcommand{\paragraph}{%
  \@startsection{paragraph}{4}%
  {\z@}{1.2ex \@plus 1ex \@minus .2ex}{-1em}%
  {\normalfont\normalsize\bfseries}%
}
\renewcommand{\baselinestretch}{1.0}
\makeatother
\setcounter{secnumdepth}{3}
\begin{document}

然后是标题页、目录、摘要等。

\newpage\null\thispagestyle{empty}\newpage

{\newgeometry{left=0.98in,right=0.98in,top=0.98in,bottom=0.78in}
%\addtocontents{toc}{~\hfill\textbf{Page}\par}
\setcounter{tocdepth}{2}
\tableofcontents\thispagestyle{empty}\setlength{\cftbeforechapskip}{2ex}\setlength{\cftbeforesecskip}{0.5ex}
\newpage
\setcounter{page}{1}
\renewcommand{\thesection}{\arabic{section}}

我只是用来\section创建部分。

答案1

您想要的(section计数器从属于chapter计数器)是文档类中的默认设置,report但是您使用代码中的这一行覆盖了它:

\renewcommand{\thesection}{\arabic{section}} 

只需从代码中删除该行即可。

相关内容