% This is a sample thesis file for CPP Math Grad Students to follow. % After downloading this file to your computer, save it with whatever name you wish. % Also download the file CPP.cls and save it in the same folder as this file. % Do not change the name of the file CPP.cls. \documentclass{CPP} % Include packages \usepackage{amsmath} % Provides various math environments \usepackage{amssymb} % Provides various math symbols \usepackage{amsthm} % Provides theorem environments \usepackage{graphicx} % Provides ability to include images \usepackage[page]{appendix} % Provides appendices environment % ============================================================================= % \begin{document} % Enter the information indicated inside the curly brackets below \titleone{Your Thesis Title} \titletwo{} \titlethree{} \doctype{Thesis} \doctypeUp{Thesis} \degree{Master of Science} \field{Mathematics} \Author{Your Name} \Advisor{Your Advisor's Name} \MemberA{Committee Member's Name} \MemberB{Committee Member's Name} \Year{2024} \Semester{Spring} % Type your abstract inside the curly brackets below \Abstract{} % Type your acknowledgments inside the curly brackets below \Acknowledgments{} % The following generates a title page, a committee membership page, % an acknowledgments page, an abstract page, and a table of contents \titlepage \committeemembershippage{\addcontentsline{toc}{chapter}{Committee Membership}} \acknowledgmentspage{\addcontentsline{toc}{chapter}{Acknowledgements}} \abstractpage{\addcontentsline{toc}{chapter}{Abstract}} \tableofcontents{} % Comment out either or both of the following two lines to remove % the List of Figures and/or List of Tables, as is appropriate for your thesis \listoftables{\addcontentsline{toc}{chapter}{List of Tables}} \listoffigures{\addcontentsline{toc}{chapter}{List of Figures}} % Reset the page counter for the main body of the thesis \newpage \pagenumbering{arabic} \setcounter{page}{1} \thispagestyle{empty} % The \AddChap command should be issued before the first chapter to update % the display style in the Table of Contents \AddChap % ----------------------------------------------------------------------------- % % Change the titles of Chapters and Sections below as desired. % ----------------------------------------------------------------------------- % \chapter{Chapter Title} \section{Section Title} Some text. \section{Another Section Title} Some text. Some math $y = x^2$. Some fancy fonts \textbf{bold}, \textit{italics}. \section{Yet Another Section Title} Some text. % ----------------------------------------------------------------------------- % \chapter{Another Chapter Title} \section{Section Title} Some text. \section{Another Section Title} Some text. % ----------------------------------------------------------------------------- % % BIBLIOGRAPHY % The \SuppChap command should be issued before the bibliography to update % the display style in the Table of Contents \SuppChap \newpage \begin{thebibliography}{99} \addcontentsline{toc}{chapter}{{Bibliography}} \bibitem{Lamport} Leslie Lamport, \textit{\LaTeX: A Document Preparation System}, Addison-Wesley Professional, 2nd Edition, 1994 \end{thebibliography} \clearpage % ----------------------------------------------------------------------------- % % APPENDICES % The \AddAppendix command should be issued before the first appendix to update % the display style in the Table of Contents \AddAppendix \begin{appendices} \chapter{Appendix Title} \chapter{Another Appendix Title} \section{Section Title} \end{appendices} % ----------------------------------------------------------------------------- % \end{document}