Below is my MWE. I need to have my abstract to start at top of the page and the page number of the abstract page to be numbered iii (roman numeral). What do I need to do?
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{titlesec}
\renewcommand{\chaptername}{CHAPTER}
\titleformat{\chapter}[hang]
{\normalfont\normalsize\bfseries\centering}{\chaptertitlename\ \thechapter:}{2mm}{\normalsize\uppercase}
\titlespacing{\chapter}{0pt}{0pt}{\baselineskip}
\renewcommand{\abstractname}{ABSTRACT}
\begin{document}
\begin{abstract}
The purpose of this research is \ldots
\end{abstract}
\chapter{Introduction}
This is the introduction chapter.
\end{document}
Mimi