论文格式

论文格式

我在第 1 章开头遇到了初始文本垂直间距的问题。第 2 章和其余章节的间距相同,但第 1 章似乎从顶部开始。如果能提供任何帮助或提示来解决这个问题,我将不胜感激,谢谢。

在此处输入图片描述

在此处输入图片描述

\documentclass[oneside,12pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{eurosym}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\graphicspath{ {Images/} }
\usepackage{caption}
\usepackage{subcaption}
\usepackage[margin=10pt,font=small,labelfont=bf]{caption}
\captionsetup[figure]{labelformat=simple, font=bf, labelfont=bf, textfont=bf, labelsep=endash, format=hang,justification=raggedright}
\captionsetup[table]{labelformat=simple, font=bf, labelfont=bf, textfont=bf, labelsep=endash, format=hang,justification=raggedright}
\usepackage[bookmarks=true]{hyperref}
\usepackage[a4paper,width=16.5cm,top=2.5cm,bottom=3cm,bindingoffset=0.6cm]{geometry}
\usepackage{parskip}
\usepackage[onehalfspacing]{setspace}
\usepackage{float}
\floatstyle{plaintop}
\restylefloat{table}\usepackage{paralist}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\lhead{Incorporating Road Safety into Pavement Management \\ Rita Justo Silva} 
\rhead{Thesis Project \\ \nouppercase{\leftmark}}
\fancyfoot{}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{0.3pt}
\renewcommand{\footrulewidth}{0.3pt}\usepackage{tocloft}

\newlength{\mylen}

\renewcommand{\cftfigpresnum}{\figurename\enspace}
\renewcommand{\cftfigaftersnum}{\hspace{0.2cm}-}
\settowidth{\mylen}{\cftfigpresnum\cftfigaftersnum}
\addtolength{\cftfignumwidth}{\mylen}
\renewcommand{\cfttabpresnum}{\tablename\enspace}
\renewcommand{\cfttabaftersnum}{\hspace{0.2cm}-}
\settowidth{\mylen}{\cfttabpresnum\cfttabaftersnum}
\addtolength{\cfttabnumwidth}{\mylen}
\usepackage{booktabs}% http://ctan.org/pkg/booktabs
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\usepackage[round]{natbib}
\bibliographystyle{apalike} 
\renewcommand{\bibname}{References}
\usepackage[htt]{hyphenat}
\usepackage{etoolbox}
\newbool{firstbib}
\booltrue{firstbib}
\preto{\bibitem}{\ifbool{firstbib}{\thispagestyle{fancy}\setbool{firstbib}{false}}{}}\usepackage{multicol}
\usepackage{tabulary}
\usepackage{pdflscape}
\usepackage{longtable}
\usepackage{ltablex} 
\usepackage{array}

\begin{document}

    \pagenumbering{roman}           % roman page numbing (invisible for empty page style)
    \pagestyle{empty}               % no header or footers

\input{titlepage}

\input{abstract}

\clearpage

\setcounter{tocdepth}{2}

\renewcommand{\contentsname}{Table of Contents}

\tableofcontents

\clearpage

\listoffigures

\clearpage

\listoftables

    \chapter{Introduction} \thispagestyle{empty}

       \pagestyle{fancy}
        \pagenumbering{arabic}\usepackage{multirow} \input{Chapters/1_introduction}

       \clearpage
       \phantomsection

    \chapter{Literature Review} \thispagestyle{empty}

        \input{Chapters/2_literature_review}

       \clearpage
       \phantomsection
.....

\end{document}

相关内容