\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{afterpage}
\newcommand\myemptypage{
\null
\thispagestyle{empty}
\addtocounter{page}{-1}
\newpage
}
\usepackage{geometry}
\geometry{ %to set margins
a4paper,
left = 50.8 mm, %2 inches
right = 25.4 mm, %1 inch
top = 38.1 mm, %1 and a half inches
bottom = 25.4 mm %1 inch
}
\linespread{2} %double spaced
\newcommand{\signatureLine}{\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_}
%%%for building algorithms
\usepackage{amsthm}
\usepackage{algorithm2e}
\usepackage{algpseudocode}
%%%for formatting theorems and proofs
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\usepackage{graphicx}
\graphicspath{ {figures/} }
\begin{document}
\myemptypage{} %use this command to insert empty pages
%%%%%%%%%%%%%%% Title page %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{center}
\uppercase{Title of the thesis}\\
By\\
\uppercase{Full name of Student}\\
A Thesis\\
Presented to the Faculty\\
of Austin College\\
In Partial Fulfillment of the Requirements \\
for the\\
HONORS PROGRAM of the Department of [DEPARTMENT]\\
Sherman, Texas\\
\today
\end{center}
\newpage
%%%%%%%%%%%%%% Committee Page %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{center}
Approved by [Thesis advisor], [Title], Thesis Director
\newline
[NAME AND TITLE COMMITTEE MEMBER 1]
\newline
\signatureLine
\newline
[NAME AND TITLE COMMITTEE MEMBER 2]
\newline
\signatureLine
\newline
[NAME AND TITLE COMMITTEE MEMBER 3]
\newline
\signatureLine
\newline
\end{center}
\newpage
%%%%%%%%%%%%%% Acknowledgements %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{center}
[optional acknowledgements page]
\end{center}
%%%%%%%%%%%%%% Table of content, etc. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\tableofcontents
\listoffigures %delete if not relevant
\listoftables %delete if not relevant
\newpage
%%%Now you can write your actual thesis
\section{Introduction}
%%%Bib + appendix
\newpage
\bibliographystyle{plain}
\bibliography{bibliography.bib}
\section{Appendix}
%%%final blank page
\newpage
\myemptypage{}
\end{document}