ba-thesis/latex/thesis/thesis.tex

65 lines
2.2 KiB
TeX

% Template author: Johannes Demel
% Document class provides standardized title page + needed extras.
\documentclass{cel-thesis/cel-thesis}
\thesisTitle{Write my thesis}
\thesisType{Example Template}
\thesisAuthor{John Doe}
%\thesisAdvisor{Prof. Dr.-Ing. Laurent Schmalen}
%\thesisHeadOfInstitute{Prof. Dr.-Ing. Laurent Schmalen}
\thesisSupervisor{Name of assistant}
\thesisStartDate{Start date}
\thesisEndDate{End date}
\thesisSignatureDate{Signature date}
\thesisLanguage{english} % english or ngerman
\thesisCC{FALSE}
\thesisPythonWatermark{FALSE}
%%% LANGUAGE SETTINGS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% additional Hyphenation rules
\hyphenation{non-para-metric repro-gra-mmable}
% Settings for bibliography
\usepackage{babelbib}
\setlanguage % set correct language as selected above
%%% PACKAGES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Add all the packages you feel like you need them.
% You'll need it.
% automatically expand/abbreviate terms.
\usepackage{caption}
\usepackage{bm}
\usepackage{subcaption}
\usepackage{todonotes} % great for draft annotations
\DeclareCaptionLabelFormat{bf-nodot}{\textbf{#1}~\textbf{#2}}
\captionsetup{labelformat=bf-nodot,labelsep=colon}
%%% DEFINITIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% pretty C++ print.
\def\CC{{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\tiny\textbf{++}}}}
\begin{document}
\pagenumbering{roman} % all the preliminaries should be counted roman style
\maketitle
%% preliminaries
\include{chapters/abstract} % a MUST, few pages abstract
%% main document
\cleardoublepage
\pagenumbering{arabic} % now old school arabic enumerated pages.
\tableofcontents % a MUST
\cleardoublepage % make sure multipage TOCs are numbered correctly.
\include{chapters/introduction} % include chapter introduction.tex
\include{chapters/systemmodel} % an example chapter
\include{chapters/conclusion} % everything ends with a summary!
%% Appendix
\appendix
% \listoffigures % if you want, not usual
% \listoftables % if you want, not usual
\include{abbreviations} % use the acronym package. Already include with the template.d
\bibliography{cel-thesis/IEEEabrv,bibliography} % include bibliography.bib and with formating etc.
\end{document}