I'm trying to format my thesis, and I copied the formatting stuff from a friend who finished her thesis last year. Unfortunately, she only had two chapters and then subsections. I have more chapters, and since they are roman numerals, the numbers are running into my titles. This is formatted (to the best of my knowledge) correctly, but I'd like to start the title text a little more to the right:
\documentclass[12pt,fleqn, letterpaper]{report}
\usepackage{indentfirst}
\usepackage{setspace}
\usepackage{titlesec}
\usepackage[hidelinks]{hyperref}
\oddsidemargin 0in
\textwidth 6.5 in
\topmargin 0in
\headheight 0in
\headsep 0in
\textheight 8.6in
\footskip 0.4in
\makeatletter
\renewcommand*\l@chapter[2]{%
\ifnum \c@tocdepth >\m@ne
\addpenalty{-\@highpenalty}%
\vskip 1.0em \@plus\p@
\setlength\@tempdima{1.5em}%
\begingroup
\parindent \z@ \rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\leavevmode \bfseries
\advance\leftskip\@tempdima
\hskip -\leftskip
#1\nobreak\normalfont\leaders\hbox{$\m@th
\mkern \@dotsep mu\hbox{.}\mkern \@dotsep
mu$}\hfill\nobreak\hb@xt@\@pnumwidth{\hss #2}\par
\penalty\@highpenalty
\endgroup
\fi}
\makeatother
\titleformat{\chapter}
{\normalfont \center}{\thechapter}{1em}{}
\titlespacing*{\chapter}{0pt}{-.5 in}{0.35in}
\renewcommand{\thechapter}{\Roman{chapter}}
\renewcommand*\contentsname{TABLE OF CONTENTS}
\begin{document}
\begin{singlespace}
\tableofcontents
\end{singlespace}
\addtocontents{toc}{\noindent CHAPTER\par}
\chapter{this is chapter I}
\chapter{this is chapter II}
\chapter{this is chapter III}
\chapter{this is chapter IV}
\chapter{this is chapter V}
\chapter{this is chapter VI}
\chapter{this is chapter VII}
\chapter{this is chapter VIII}
\end{document}


