I am just about ready to submit my thesis but I have run into some formatting issues. I have tried Googling for solutions and reading tutorials/manuals, but I am still stick. I am starting to lose my mind!!
I have four issues which should be really, really simple yet are proving to be incredibly stubborn.
For reference, I am using TeXnicCenter with the following packages:
\documentclass[12pt]{report}
\usepackage[pdftex]{graphicx}
\usepackage{setspace}
\usepackage{multirow}
If at all possible, because I have written the thesis and am close to being done, I would prefer not to change any of the packages I am currently using!
The problems are:
1) I can not, for the life of me, figure out how to start text 4.5 inches from the top of a page. I have tried the following:
Code: Select all
\begin{center}
\singlespacing
\vspace{4.5in}
Accepted in partial fulfillment of the requirements for\\
the degree of Master of Science in Mechanical Engineering\\
in the Graduate School of\\
Stony Brook University\\
State University of New York\\
2009\\
\vskip .5 in
September 7, 2009\\
\vskip 1 in
a, Department of Mechanical Engineering, Stony Brook University\\
\vskip 0.15 in
b, Department of Mechanical Engineering, Stony Brook University\\
\vskip 0.15 in
c, Department of Mechanical Engineering, Stony Brook University\\
\vskip 0.15 in
\normalsize
\end{center}
Code: Select all
%\vskip 4.5 in
%\topskip 4.5 in
2) This next problem is pretty embarrassing and should be fairly easy. I am trying to start the page numbering in my document on the third physical page. I want to number this page with the roman numeral "i". I do:
Code: Select all
\begin{center}
\setcounter{page}{1}
\pagenumbering{roman}
... text ...
\end{center}

3) I am trying to add my List of Figures to my Table of Contents. I am able to add it, yet it does not include the correct page number! I do:
Code: Select all
\tableofcontents
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
4) Finally, I am trying to make my ABSTRACT heading the same as my LoF and ToC. I use the \abstract command so it automatically generates the abstract for me. Same thing for the LoF and the ToC. all headers are automatically generated. How can I make the abstract match the other headers?
I know I have asked a lot of questions here, but I am hoping that someone with a good amount of experience with LaTeX is able to just knock these issues out very quickly. They seem like they should be elementary problems to someone with experience in the language.
Thank you so much in advance!