如何更改章节标题的样式

如何更改章节标题的样式

这是我第一次使用 LaTeX,我正在努力更改标题章节的样式格式。特别是,我正在运行此代码:

\documentclass[12pt,a4paper]{report}
\usepackage[english]{babel}
\usepackage{newlfont}
\usepackage{color}
\usepackage[autopunct=true]{csquotes}
\usepackage{quotchap}
\usepackage{epigraph}
\usepackage{tocloft} %To personalize table of contents

%\usepackage[nottoc]{tocbibind} To add sections in the table of contents 
\textwidth=450pt\oddsidemargin=0pt

\begin{document}
\begin{abstract}
 
\end{abstract}

\newpage
\tableofcontents
\newpage

\chapter[First chapter]{Introduction}
\section{First section}
\end{document}

我得到了这种风格:

在此处输入图片描述

但我想获得这个:

在此处输入图片描述

我如何获得它?

相关内容