% --------------------------------- preamble -----------------------------------
% To compile this document on your machine, run the following commands in the
% terminal:
% pdflatex main.tex
% biber main
% pdflatex main.tex
% pdflatex main.tex
% In Overleaf, just click "Compile" once.
% Use the `noul` option if there is a conflict with the `\ul` command.
% Use the `internal` option for an prospectus or graduate research paper.
\documentclass{afitthesis}
% NOTE: The following macros are the meta data of your document, like the title,
% author, and department. Some of these apply to the whole document. Some, like
% in the section after this, apply to the SF 298 form only. Several are
% commented out because they are probably not needed for your situation.
% Main document information
\title{Great Contribution to the Field of Things}
\author{John Smith}
% \authorsecond{} % Use these if other students contributed.
% \authorthird{}
% \authorfourth{}
\rank{First Lieutenant, USAF}
% \ranksecond{} % Use these if other students contributed.
% \rankthird{}
% \rankfourth{}
\previousdegrees{B.S.E.E.}
\newdegree{Master of Science in Electrical Engineering}
\graduationdate{September 2024} % expected month and year
\department{\ENG} % \ENY, \ENG, \ENP, \ENC, \ENS, or \ENV
% \doctype{dissertation} % Default is "thesis"
\docdesignator{AFIT-ENG-MS-XX-X-XXX} % provided by AFIT
% \address{} % default is WPAFB
% \disclaimer{} % default distances the AF from the views of the paper
% \copyrightstatement{} % default claims ownership by US government
\committee{ % rank name, Ph.D. \\ role
{Albert Einstein, Ph.D.\\Chair},
{Lt Col Michael Faraday, Ph.D.\\Member},
{Maj Carl F. Gauss, M.S.\\Member}}
\abstract{Write your abstract here. This text should probably stay under 100
words or so. Make sure to not put any personally-identifiable information
about others in this text.}
\keywords{earth; water; air; fire}
\dedication{To the one who loves me most.}
\acknowledgments{I would like to thank the entire committee for your great
support.}
% Distribution and Control. Uncomment to specify.
% \cui{ % for Controlled Unclassified Information
% Controlled By: AETC \\
% Controlled By: AFIT/ENG \\
% CUI Category(ies): PRVCY \\
% Distribution: \DistB{CATEGORY}{DATE}{OFFICE} \\
% POC: John Smith, 555-123-4567}
% \classified{ % for classified work
% Classified By: \\
% Derived From: \\
% Declassify On: }
% \banner{cui} % goes in the header and footer
% SF 298 (Report Documentation Page) information
\sfStartDate{Sep 2023}
\sfEndDate{Mar 2024}
\sfContractNumber{XXXXXX-XX-X-XXXX}
\sfGrantNumber{}
\sfProgramElementNumber{}
\sfProjectNumber{XXXXXXXX}
\sfTaskNumber{}
\sfWorkUnitNumber{}
\sfSponsorAgency{AFXX/XXXX\\
Building XXX, WPAFB OH 45433-7765\\
DSN XXX-XXXX, COMM 937-XXX-XXXX, Email: first.last@us.af.mil }
\sfSponsorAcronyms{}
\sfSponsorReportNumber{}
\sfDistribution{\DistA}
\sfSupplementaryNotes{}
\sfReportClassification{}
\sfAbstractClassification{}
\sfPageClassification{}
\sfAbstractLimitation{UU}
\sfResponsiblePerson{Dr. Your Advisor, AFIT/ENG}
\sfPhoneNumber{(937) XXX-XXXX}
\sfClassification{}
% SF 298 Override default variables
% \sfReportDate{} % defaults to today's date
% \sfReportType{} % defaults to \doctype{}
% \sfTitle{} % defaults to \title{}
% \sfAuthors{} % defaults to \author{}, \rank{}
% \sfDepartment{} % defaults to \department{}
% \sfAddress{} % defaults to \address{}
% \sfDocDesignator{} % defaults to \docdesignator{}
% \sfAbstract{} % defaults to \abstract{}
% \sfSubjectTerms{} % defaults to \keywords{}
% \sfPageCount{} % defaults to total number of pages
% NOTE: Google "Overleaf Getting started with BibLaTeX" for guidance.
\usepackage[style=apa]{biblatex} % bibliographies (choose style)
\addbibresource{refs.bib} % name of the bibliography file
% Define the default location to look for figures.
\graphicspath{{figures}}
% ------------------------------ body of paper ---------------------------------
\begin{document}
\maketitle % This command will create all the prefatory pages.
\input{chapters/ch_intro.tex}
\input{chapters/ch_review.tex}
\input{chapters/ch_method.tex}
\input{chapters/ch_results.tex}
\input{chapters/ch_conclusion.tex}
\appendix % This command is necessary before any appendix chapters.
\input{chapters/ap_acronyms.tex}
% bibliography
\nocite{*} % Uncomment to print all .bib entries, regardless of citation.
\clearpage\phantomsection % Creates new page and section for bibliography.
\addcontentsline{toc}{appendix}{\bibname} % Adds bib to table of contents.
\printbibliography % Prints the bibliography.
% optional biography
\begin{vita} % Add name within brackets for multiple vitas: \begin[name]{vita}.
If you are adding a description about yourself. Use the \verb|vita|
environment. Keep the contents to one page. If for some reason there is
more than one author contributing to this paper, each author should have a
separate page.
\end{vita}
% Standard Form 298
\sfTwoNineEight
\end{document}