124 lines
2.8 KiB
TeX
124 lines
2.8 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}
|
|
\setlanguage
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%% Packages, Settings and Definitions %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%
|
|
% Tikz related packages
|
|
%
|
|
|
|
\usepackage{tikz}
|
|
\usepackage{tikz-3dplot}
|
|
\usepackage{pgfplots}
|
|
|
|
\usetikzlibrary{external}
|
|
\usetikzlibrary{spy}
|
|
|
|
\pgfplotsset{compat=newest}
|
|
\usepgfplotslibrary{colorbrewer}
|
|
|
|
\tikzexternalize[prefix=build/]
|
|
|
|
%
|
|
% Generic packages
|
|
%
|
|
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[ngerman]{babel}
|
|
\usepackage{amsmath}
|
|
\usepackage{amssymb, amsfonts, latexsym}
|
|
\usepackage{float}
|
|
\usepackage{listings}
|
|
\usepackage{graphicx}
|
|
\usepackage{xcolor}
|
|
\usepackage{subcaption}
|
|
\usepackage{bm}
|
|
\usepackage{subcaption}
|
|
\usepackage{todonotes}
|
|
\usepackage{ifthen}
|
|
\usepackage[printonlyused]{acronym}
|
|
|
|
\usepackage{caption}
|
|
\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}
|
|
|
|
|
|
%
|
|
% Include useful commands and definitions
|
|
%
|
|
|
|
\input{common.tex}
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% DOCUMENT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
\begin{document}
|
|
|
|
%
|
|
% Preliminaries
|
|
%
|
|
|
|
\pagenumbering{roman}
|
|
|
|
\maketitle
|
|
\makestatutorydeclaration
|
|
% \makeCCdeclaration
|
|
|
|
% \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}
|
|
\printbibliography
|
|
|
|
\end{document}
|
|
|