%-------------Preamble-------------%
\input{preamble}
%-----------Front Matter-----------%
\begin{document}
\setcounter{page}{1} % Start on page 1.
\pagenumbering{roman} % Roman numerals for the front matter.
%------------Front page------------%
\thispagestyle{empty} % Clear canvas allows for a fully customisable front page.
\begin{center}
\noindent INSTITUTO TECNOLÓGICO Y DE ESTUDIOS SUPERIORES\\
\noindent DE MONTERREY\\[0.75cm]
\noindent DEPARTMENT OF CHEMISTRY\\[0.8in]
\end{center}
\begin{figure}[h]
\centering
\includegraphics[height=5.5 cm]{tec.eps} % Use vectorised images whenever possible (Formats: .eps, .ps, .pdf). Exceptions are heat maps and scatter plots where it's preferable to use .png or .bmp. NEVER use .jpg, it's tacky and this is your thesis (i.e. your baby, don't feed it junk).
\vspace{0cm}
\end{figure}
\vspace{1cm}
\begin{center}
THESIS TITLE IN ALL CAPS.\\
BY\\
STUDENT'S FULL NAME IN ALL CAPS\\[1cm]
\small RESEARCH PROJECT PRESENTED AS PARTIAL REQUIREMENT FOR THE DEGREE OF BACHELOR OF SCIENCE IN CHEMISTRY\\
\vfill
\noindent MONTERREY, N.L. \hfill MONTH YEAR\\
\end{center}
\newpage
%------------Signatures------------%
\thispagestyle{empty}
\begin{center}
\noindent THESIS TITLE IN ALL CAPS.\\[2cm]
\noindent BY\\
\noindent STUDENT'S FULL NAME IN ALL CAPS\\[0.3cm]
\noindent \small HAS BEEN APPROVED\\
\noindent \small MONTH YEAR\\[0.3cm]
\end{center}
\begin{flushleft}
\noindent EVALUATING COMMITTEE:\\[0.3cm]
\end{flushleft}
\begin{center} % Use a non-breaking space to separate the title from the name. Non-breaking spaces are denoted by ~.
\begin{tabular}{c@{\hspace{0.5in}}c}
\rule[1pt]{2.3in}{1pt} & \rule[1pt]{2.3in}{1pt}\\
Full name and title, Adviser & Full name and title, Adviser\\[1cm]
\rule[1pt]{2.3in}{1pt} & \rule[1pt]{2.3in}{1pt}\\
Full name and title & Full name and title\\[1cm]
\multicolumn{2}{c}{\rule[1pt]{2.3in}{1pt}}\\
\multicolumn{2}{c}{Full name and title}\\[1cm]
\end{tabular}
\end{center}
\noindent ACCEPTED:\\
\begin{center}
\begin{tabular}{c}
\rule[1pt]{4 in}{1pt}\\
Full name and title\\
Head of the Bachelor's Degree in Chemistry\\[2cm]
\rule[1pt]{4 in}{1pt}\\
Full name and title\\
Head of the Department of Chemistry\\
\end{tabular}
\end{center}
\vfill
%--------------Summary--------------%
\include{summary}
%----------Acknowledgements---------%
\newpage
\begin{center}
{\Large\bf{ACKNOWLEDGEMENTS}}
\end{center}
\vfill
Give thanks guys, you didn't get here alone. Make sure to include academic and personal mentors, friends, and family members who got you there.
In my case, I have to thank Professor Marcelo Videa Vargas---who was also an adviser in my actual thesis---for creating the original version of this template and introducing me to \LaTeX~via his fearsome exams.
\vfill
%------------Dedication------------%
\newpage
\begin{center}
{\Large\bf{DEDICATION}}
\vfill
Keep it short, keep it sweet, dedicate it to someone who will not leave your side and/or mind any time soon.
\vfill
\end{center}
%-------------Indexes--------------%
\newpage
\tableofcontents % Table of contents.
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Tables} % Add table index to the table of contents (toc).
\listoftables % Table index.
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Figures} % Add figure index to the toc.
\listoffigures % Figure index.
%-----------Middle Matter----------%
\newpage
\setcounter{page}{1} % Start from page 1.
\pagenumbering{arabic} % Arabic numbering.
%----------Introduction------------%
\include{introduction}
%-----------Methodology------------%
\include{methodology}
%-------------Results--------------%
\include{results}
%------------Conclusion------------%
\include{conclusion}
%------------Back Matter-----------%
\setcounter{originalpagenumber}{\number\value{page}} % Save page number so the bibliography follows the pre-appendix page sequence.
%------------Appendix--------------%
\include{appendix}
\pagenumbering{arabic} % Back to arabic numbering.
\setcounter{page}{\number\value{originalpagenumber}} % Change the page counter so it follows the pre-appendix sequence.
%-----------References-------------%
\bibliographystyle{IEEEtran} % IEEE has the most complete bibliography format that meets the chemistry department's requirements.
\bibliography{bibliography}
\end{document}