I'm formatting my dissertation and I need to number the pages starting with page two as "ii" through the end of the table of content, and then switch and restart page numbering with the first page of first chapter using arabic numbering 1,2...
Here's the code (I apologize if it's not clean):
Code: Select all
\documentclass[reqno,12pt,oneside]{report}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage[top=1in, bottom=1in, left=1.5in, right=1in]{geometry}
\usepackage[singlespacing]{setspace}
\usepackage[bottom]{footmisc}
\usepackage{indentfirst}
\usepackage{endnotes}
\usepackage{graphicx, subfigure}
\usepackage{epstopdf}
\DeclareGraphicsExtensions{.eps,.jpg}
\usepackage{rotating}
\usepackage{booktabs}
\usepackage[tableposition=top]{caption}
\usepackage{placeins}
\usepackage{afterpage}
\usepackage{subfigure}
\usepackage{multirow}
\usepackage{color, colortbl}
\usepackage[toc,page]{appendix}
\definecolor{Gray}{gray}{0.9}
\usepackage[justification=centering]{caption}
\usepackage{array,longtable,calc}
\newcommand{\ra}[1]{\renewcommand{\arraystretch}{#1}}
\usepackage{arydshln}
\usepackage[margin=65pt,font=small,labelfont=bf,justification=raggedright,singlelinecheck=false]{caption}
\usepackage{caption}
\usepackage[backend=biber,authordate,natbib,maxnames=2,minnames=1]{biblatex-chicago}
\renewcommand*{\nameyeardelim}{\addcomma\addspace}
\addbibresource{bibliography_compiled.bib}
\usepackage{hyperref}
\newtheorem{theorem}{Theorem}
\newtheorem{acknowledgement}{Acknowledgement}
\newtheorem{algorithm}[theorem]{Algorithm}
\newtheorem{axiom}[theorem]{Axiom}
\newtheorem{case}[theorem]{Case}
\newtheorem{claim}[theorem]{Claim}
\newtheorem{conclusion}[theorem]{Conclusion}
\newtheorem{condition}[theorem]{Condition}
\newtheorem{conjecture}[theorem]{Conjecture}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{criterion}[theorem]{Criterion}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{exercise}[theorem]{Exercise}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{notation}[theorem]{Notation}
\newtheorem{problem}[theorem]{Problem}
\newtheorem{proposition}{Proposition}
\newtheorem{remark}[theorem]{Remark}
\newtheorem{solution}[theorem]{Solution}
\newtheorem{summary}[theorem]{Summary}
\newenvironment{proof}[1][Proof]{\noindent\textbf{#1.} }{\ \rule{0.5em}{0.5em}}
\makeatletter
\makeatother
\geometry{left=1in,right=1in,top=1.00in,bottom=1.0in}
%\setcounter{secnumdepth}{2}
\makeatletter
\if@twoside \setcounter{page}{4} \else \setcounter{page}{2} \fi
\makeatother
\begin{document}
\pagenumbering{roman}
\begin{titlepage}
\vspace*{\fill}
\begin{center}
{\Large\uppercase{\bfseries Title of Dissertation}}
\vspace{6.25cm}
{First Last Name} \\ [5pt]
\vspace{4cm}
{Submitted to the faculty of the University Graduate School}\\[5pt]
{in partial fulfillment of the requirement for the degree}\\[5pt]
{Doctor of Philosophy}\\[5pt]
{in the Department of Economics,}\\[5pt]
\vfill
{July 2015}
\end{center}
\end{titlepage}
\begin{titlepage}
\renewcommand{\thepage}{\roman{page}}
\begin{center}
{Accepted by the Graduate Faculty in partial\\
fulfillment of the requirements for the degree of Doctor of\\
Philosophy}\\[8cm]
\raggedright{ Doctoral Committee}
\vspace{1cm}
\raggedleft{\makebox[2.5in]{\hrulefill}}\\
\raggedleft{Committee Member 1, Ph.D.\\[1.5cm]
\makebox[2.5in]{\hrulefill}\\
\raggedleft{Committee Member 2, Ph.D.}\\[1.5cm]
\makebox[2.5in]{\hrulefill}\\
\raggedleft{Committee Member 3, Ph.D.}\\[1.5cm]
\makebox[2.5in]{\hrulefill}\\
\raggedleft{Committee Member 4, Ph.D.}\\[1.5cm]
\raggedright{July 21st, 2015}
\end{titlepage}
\begin{titlepage}
\begin{center}
\vspace*{\fill}
Copyright \copyright \, \the\year\\
\vspace{0.5cm}
{Name} \\ [5pt]
\end{center}
\end{titlepage}
\begin{titlepage}
\vspace{4cm}
\begin{center}
\centering{First Last Name\\ \vspace{0.5cm}
\centering{\uppercase{Title}}\\
\vspace{1cm}
\justify
This paper examines ...
\vspace{1cm}
\raggedleft{\makebox[2in]{\hrulefill}}\\
\raggedleft{Committee Member 1, Ph.D.}\\[0.7cm]
\makebox[2in]{\hrulefill}\\
\raggedleft{Committee Member 2 Ph.D.}\\[0.7cm]
\makebox[2in]{\hrulefill}\\
\raggedleft{Committee Member 3, Ph.D.}\\[0.7cm]
\makebox[2in]{\hrulefill}\\
\raggedleft{Committee Member 4, Ph.D.}\\[0.7cm]
\end{center}
\end{titlepage}
\setcounter{tocdepth}{2}
\tableofcontents
\pagenumbering{arabic}
\input{chapter1}
\input{chapter2}
\input{chapter3}
\printbibliography
\end{document}