帮助格式化论文

帮助格式化论文

我在尝试正确格式化文档时遇到了很多麻烦。我觉得我开始使用了太多软件包。但我对整体格式很满意,我遇到的最大问题是我的目录页没有显示属于每个章节的部分上方的章节。

这是我目前正在使用的代码:

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{setspace}
\usepackage{fourier, erewhon, cabin}
\usepackage[english]{babel}
\usepackage{float}
\usepackage{titletoc}
\usepackage{relsize}
%\usepackage[margin=1.25in]{geometry}
\usepackage{lipsum}
\usepackage[top=1.5in, left=1.25in, bottom=1.75in, right=1.25in]{geometry}

\addto\captionsenglish{\renewcommand*\contentsname{\centerline{Table of contents}}}

\newcommand\tab[1][1cm]{\hspace*{#1}}
\renewcommand*\contentsname{Table of Contents}
\renewcommand{\contentsname}{\centering Contents}
\newcommand\Chapter[2]{\chapter
    [#1\hfil\hbox{}\protect\linebreak{\itshape#2}]%
    {#1\\[2ex]\Large\itshape#2}%
}
\newlength{\bracewidth}

\newcommand{\myunderbrace}[2]{\settowidth{\bracewidth}{$#1$}#1\hspace*{-1\bracewidth}\smash{\underbrace{\makebox{\phantom{$#1$}}}_{#2}}}

\usepackage{tocloft}
\usepackage{comment}

%\begin{comment}
\renewcommand{\cftchapdotsep}{\cftdotsep} % dots after chapter entries
\setlength{\cftchapnumwidth}{8em} % increase space for chapter numbers
\renewcommand{\cftchappresnum}{CHAPTER } % put this before chapter numbers

 


\begin{document}
        
    \pagenumbering{roman}
    \setcounter{page}{2}    
    \input{Dedication}
    
    \input{ACKNOWLEDGEMENTS}
    
    \tableofcontents
    
    \listoffigures
    
    \listoftables
    
    \input{Chapter_1}
    
    \input{Chapter_2}
        
    \pagenumbering{arabic}
    \setcounter{page}{1}
    %\input{Chapters}
    
    \input{Appendix}
    
\end{document}

当前输出如下 在此处输入图片描述

如果您有任何建议来解决这个问题,我将不胜感激。我还在努力压缩所有的软件包,以简化

相关内容