117 lines
3.3 KiB
TeX
117 lines
3.3 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 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
% Tikz related packages
|
|
|
|
%\usepackage{tikz} % Included in cel-thesis.cls
|
|
%\usepackage{pgfplots} % Included in cel-thesis.cls
|
|
%\pgfplotsset{compat=newest}
|
|
\usepackage{tikz-3dplot}
|
|
\usepgfplotslibrary{colorbrewer}
|
|
\usetikzlibrary{external}
|
|
\usetikzlibrary{spy}
|
|
\tikzexternalize[prefix=build/]
|
|
|
|
% Generic packages
|
|
|
|
%\usepackage[utf8]{inputenc} % Included in cel-thesis.cls
|
|
%\usepackage[T1]{fontenc} % Included in cel-thesis.cls
|
|
%\usepackage[ngerman]{babel} % Included in cel-thesis.cls
|
|
%\usepackage{amsmath} % Included in cel-thesis.cls
|
|
\usepackage{float}
|
|
\usepackage{listings}
|
|
%\usepackage{graphicx} % Included in cel-thesis.cls
|
|
\usepackage{xcolor}
|
|
%\usepackage[binary-units]{siunitx} % Included in cel-thesis.cls
|
|
\usepackage{caption}
|
|
\usepackage{subcaption}
|
|
\usepackage{bm}
|
|
\usepackage{subcaption}
|
|
\usepackage{todonotes} % great for draft annotations
|
|
\DeclareCaptionLabelFormat{bf-nodot}{\textbf{#1}~\textbf{#2}}
|
|
\captionsetup{labelformat=bf-nodot,labelsep=colon}
|
|
%\usepackage{csquotes}
|
|
%\usepackage[citestyle=numeric, style=alphabetic, backend=biber,
|
|
% doi=false,url=false,isbn=false]{biblatex}
|
|
%\addbibresource{bibliography.bib}
|
|
|
|
% \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{++}}}}
|
|
|
|
%\input{common.tex}
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% DOCUMENT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
\begin{document}
|
|
|
|
%
|
|
% Preliminaries
|
|
%
|
|
|
|
\pagenumbering{roman}
|
|
|
|
\maketitle
|
|
\newpage
|
|
\makestatutorydeclaration
|
|
|
|
% \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}
|
|
%\printbibliography
|
|
|
|
\end{document}
|
|
|