如何删除目录中每章前的单个点并使其变小?

如何删除目录中每章前的单个点并使其变小?

我想删除图中圈出的那个单点。使用 class 时thesis,会出现单点,并且目录大小会变大。改用 class 后report,点会消失,目录大小会恢复正常。我需要使用 classthesis来满足我所在大学的要求。

在此处输入图片描述

这是我的代码:

\documentclass[a4paper,12pt]{thesis}
\usepackage[Sonny]{fncychap}
\usepackage{fullpage}
\usepackage{algorithm}
\usepackage{titlesec}
\titleformat{\section}{\normalfont\fontsize{12}{12}\bfseries}{\thesection}{0.5em}{}
\titleformat{\chapter}[display]
{\normalfont\fontsize{12}{12}\bfseries\centering}{\chaptertitlename\ \thechapter}{12pt}{}
\titleformat{\subsection}{\normalfont\fontsize{12}{12}\bfseries}{\thesubsection}{0.5em}{}
\usepackage{chngcntr}%
\renewcommand{\thechapter}{}%
\renewcommand{\thesection}{\arabic{chapter}.\arabic{section}}%
\counterwithout{figure}{chapter}
\usepackage[top=2.54cm, bottom=2.54cm, left=4cm, right=2.54cm]{geometry}
\usepackage{setspace}
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhf{}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{0pt}


\bibliographystyle{plain}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\pagenumbering{roman}
\renewcommand{\contentsname}{TABLE OF CONTENTS}
\usepackage{tocloft}

\begin{document}
\newcounter{rom}
\input{tex/title}\newpage\thispagestyle{plain}
\addtocounter{rom}{1}\setcounter{page}{2}~
\newpage\thispagestyle{plain}\setcounter{page}{3}

\tableofcontents

\newpage\thispagestyle{plain}~
\clearpage
\pagenumbering{arabic}

\input{tex/introduction}\newpage\cleardoublepage
\end{document}

相关内容