目录第二页的上边距不同

目录第二页的上边距不同

我正在写一篇论文,我需要更改目录第二页的上边距。大学要求目录第一页的上边距为 2 英寸,下一页的上边距为 1.25 英寸。我需要帮助。

MWE 在这里:

\documentclass[12pt,letter]{report}
\usepackage{univ}
\usepackage{u-local}
\usepackage{local}

\usepackage{cite}
\usepackage{appendix}
\usepackage{float}
\floatstyle{boxed}
\usepackage{srcltx}

\begin{document}
 \pagenumbering{gobble}

% \setlength{\headheight}{-0.01 in}
\begin{spacing}{1.45}
 \tableofcontents
\end{spacing}
\clearpage

\pagestyle{fancy}
 \lhead{}
 \chead{}
 \rhead{\thepage}
 \lfoot{}
 \cfoot{}
 \rfoot{}
 \renewcommand{\headrulewidth}{0.00in}
 \renewcommand{\footrulewidth}{0.00in}

\titleformat{\chapter}[display]{\normalfont\normalsize\filcenter\bfseries}{\centering\chaptertitlename\ \thechapter}{0pt}{\normalsize\uppercase}

\input{chapters}
\clearpage
\appendixtitleon
\appendixtitletocon
\begin{appendix}
    \input{appendices}
\end{appendix}

\begin{bibliography}
\bibliographystyle{IEEEtran}
\bibliography{bib}
\end{utdbibliography}

\pagestyle{empty}
    \begin{vita}
        \input{vita}
    \end{vita}
\end{document}

其中,chaptersappendicesbibliographyvita不同的文件,文本位于这些文件中。此外,univlocalu-local不同的 .sty 文件,用于设置不同页面的空间和格式。对于 ToC 页面,设置如下:

\usepackage[titles]{tocloft}

\setcounter{tocdepth}{3}

\renewcommand{\contentsname}{TABLE OF CONTENTS}
\renewcommand{\cftchapfont}{\normalsize}
\renewcommand{\cftchappagefont}{\normalsize}
\renewcommand{\cftchapdotsep}{\@dotsep}
\renewcommand{\cftchapleader}{\normalsize\cftdotfill{\cftchapdotsep}}

答案1

我假设其他页面(不同于第一页)的边距已经设置,问题出在目录的第一页;由于您正在使用该包,因此您可以简单地使用以下命令tocloft设置适当的值:\cftbeforetoctitleskip

\setlength\cftbeforetoctitleskip{-1cm}

当然,-1cm您应该使用产生所需值的长度。

相关内容