\documentclass[cornellheadings,smallerheadings]{fiu}
% These declarations make latex try hard to avoid widows and orphans.
% The FIU Graduate School is very picky about these, so you may wish to
% increase these; the maximum value is 10000.
\widowpenalty=8000
\clubpenalty=8000
% This would force all pages to have the same height.
%\flushbottom
% Input macros, if you have any.
\input{macros}
% You may wish to put some of the title words into an \mbox{} to prevent
% latex from breaking them, for example on the signature page ii.
\title{A Wise and Learned Dissertation}
\author{Roary Panther}
\conferraldate{May}{2021}
\defensedate{April 11, 2021}
\advisor{Advisor Name}
\memberone{Committee Member 1}
\membertwo{Committee Member 2}
\memberthree{Committee Member 3}
\degreefield{Computer Science}
\college{College of Engineering and Computing}
\collegedean{Dean John L. Volakis}
\gradschooldean{Andrés G. Gil}
% Lets me print a subset of the chapters, while keeping the correct numbering.
\includeonly{
prologue,
chap1,
chap2,
chap3,
epilogue
}
\begin{document}
\setcounter{page}{1}
\pagenumbering{roman}
\pagestyle{plain}
\include{prologue}
\normalspacing
\setcounter{page}{1}
\pagenumbering{arabic}
\pagestyle{cornell}
\include{chap1}
\include{chap2}
\include{chap3}
\include{epilogue}
\end{document}