76 lines
2.2 KiB
TeX
76 lines
2.2 KiB
TeX
\documentclass{cel-thesis/cel-thesis}
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% Document Parameters %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
\thesisTitle{Application of Optimization Algorithms for Channel Decoding}
|
|
\thesisType{Bachelor's Thesis}
|
|
\thesisAuthor{Andreas Tsouchlos}
|
|
%\thesisAdvisor{Prof. Dr.-Ing. Laurent Schmalen}
|
|
%\thesisHeadOfInstitute{Prof. Dr.-Ing. Laurent Schmalen}
|
|
\thesisSupervisor{Name of assistant}
|
|
\thesisStartDate{24.10.2022}
|
|
\thesisEndDate{24.04.2023}
|
|
\thesisSignatureDate{Signature date} % TODO: Signature date
|
|
\thesisLanguage{english} % english or ngerman
|
|
\thesisCC{FALSE}
|
|
\thesisPythonWatermark{FALSE}
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%% Packages, Settings and Definitions %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
\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}
|
|
|
|
% \hyphenation{non-para-metric repro-gra-mmable}
|
|
\usepackage{babelbib}
|
|
\setlanguage % Setting needed for cel-thesis
|
|
|
|
% Pretty C++ print.
|
|
\def\CC{{C\nolinebreak[4]\hspace{-.05em}\raisebox{.4ex}{\tiny\textbf{++}}}}
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% DOCUMENT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
\begin{document}
|
|
|
|
% Preliminaries
|
|
\pagenumbering{roman}
|
|
|
|
\maketitle
|
|
% \include{chapters/abstract}
|
|
|
|
% main document
|
|
\cleardoublepage
|
|
\pagenumbering{arabic}
|
|
|
|
\tableofcontents
|
|
\cleardoublepage % make sure multipage TOCs are numbered correctly
|
|
\include{chapters/introduction}
|
|
\include{chapters/systemmodel}
|
|
\include{chapters/conclusion}
|
|
|
|
|
|
% Appendix
|
|
\appendix
|
|
% \listoffigures
|
|
% \listoftables
|
|
\include{abbreviations}
|
|
\bibliography{cel-thesis/IEEEabrv,bibliography}
|
|
|
|
\end{document}
|
|
|