I am writing a thesis, and I need to change the upper margin for the second page for the table of contents only. The university demands 2in upper margin for first page of ToC, followed by 1.25in upper margin for next page. I need help.
MWE is here:
\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}
In this, chapters, appendices, bibliography and vita are different files and the text is in those files. Also, univ, local and u-local are different .sty files for setting space and formats for different pages. For ToC page, the setting is as follows:
\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}}

geometrypackage might be able to help out here, in particular,\newgeometryfor the second page. Of course, as Werner says, a MWE would go a long way :) Welcome to TeX.SE! – cmhughes Oct 24 '12 at 1:25