如何更改章节标题的位置并删除单个章节的编号?

如何更改章节标题的位置并删除单个章节的编号?

我正在尝试最小化章节标题上方的“空白”空间,并从“摘要”部分(文本和目录中)删除编号 - 因此不是所有部分,只有这一部分。有人有办法解决这个问题,不会影响我的其他设置吗?

\documentclass[hidelinks,12pt]{report}
\usepackage[paperheight=28cm,paperwidth=22cm,tmargin=25.4mm,bmargin=25mm,lmargin=38.1mm,rmargin=25.4mm,heightrounded]{geometry}
\usepackage{graphicx,siunitx,pdflscape}
\usepackage{hyperref,amsmath,amssymb,graphicx,wasysym,paralist,textcomp}
\usepackage[round]{natbib}
\usepackage[english]{babel}
\usepackage[babel]{csquotes}
\usepackage[nottoc,numbib]{tocbibind}
\usepackage{setspace}
\usepackage{blindtext}
\usepackage{multirow}
\usepackage[table,xcdraw]{xcolor}
\usepackage{caption}
\usepackage{float}
\usepackage{etoolbox}
\usepackage{lineno}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\usepackage{indentfirst}
\usepackage[font=bf]{caption}
\usepackage[titles]{tocloft}
\renewcommand\cftfigpresnum{\figurename\ }
\renewcommand\cfttabpresnum{\tablename\ }
\cftsetindents{figure}{0em}{5.5em}
\cftsetindents{table}{0em}{5.5em}

\begin{document}

\pagenumbering{Roman}
\tableofcontents
\newpage
\listoffigures
\listoftables
\clearpage

\newpage
\chapter[CHAPTER 1: Cool Stuff]{}
\textbf{\LARGE{Some cool title}}

\section[Abstract]{ABSTRACT}
This section should NOT be numbered.

\newpage
\section[Introduction]{INTRODUCTION}
This section should be numbered again.
\end{document}

现在的情况

相关内容