章节编号和标题问题

章节编号和标题问题

我是 Latex 的新手,所以如果问的问题很简单,我深表歉意,我使用的是 fancyhd 的文档类,文档类为 report。然而,在生成报告时,我得到了以下信息: 未编号

章节没有编号,我希望有人能给我指明正确的方向,首先给它们编号,其次减少章节标题和标题之间的间距,下面是我不断变化的可怕的主 tex 文件:

    %Loading in the packages
\documentclass[12pt]{report}
\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm ,bindingoffset=6mm]{geometry}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{fancyhdr}
\usepackage[backend=bibtex, style=alphabetic]{biblatex}
\usepackage{courier}
\usepackage[acronym, toc]{glossaries}
\usepackage{listings}
\usepackage{color}
\usepackage[nottoc]{tocbibind}
\usepackage{parskip}
\usepackage{float}
\usepackage{caption}
\usepackage{subcaption}
\restylefloat{table} 
\usepackage{multirow}
\DeclareFieldFormat{labelalpha}{\mkbibbold{#1}}
\DeclareFieldFormat{extraalpha}{\mkbibbold{\mknumalph{#1}}}

\graphicspath{{images/}}
\addbibresource{references.bib}

\lstset{
    basicstyle = \footnotesize\ttfamily,
    breaklines=true,
    xleftmargin=1cm,
    xrightmargin=\parindent,
}

%Loading in the pagestyling
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyhead[RO, LE]{Chapter \thechapter}
\fancyhead[LO, CE]{Section \thesection}
\fancyfoot[LO, CE]{test format}
\fancyfoot[R]{\thepage}
\renewcommand{\footrulewidth}{0.4pt}

% Redefine the plain page style
\fancypagestyle{plain}{%
  \fancyhead{}
\fancyfoot{}
\fancyhead[RO, LE]{Chapter \thechapter}
\fancyhead[LO, CE]{Section \thesection}
\fancyfoot[LO, CE]{test format}
\fancyfoot[R]{\thepage}
}

\begin{document}

%\chapter*{Acknowledgements}
%\input{chapters/Acknowledgements}

\tableofcontents

\listoffigures

\listoftables

\chapter{chapter1}

\chapter{chapter2}

\chapter{chapter3}

\chapter{chapter4}


\end{document}

我还有另一个问题,在诸如目录页之类的页面上,我得到了以下第 0 章,如果可能的话,我希望简单地删除标题并保留行。我希望这有意义,为我糟糕的格式道歉,请帮忙 :-/ 在此处输入图片描述

相关内容