103 lines
1.8 KiB
TeX
103 lines
1.8 KiB
TeX
\documentclass[10pt, aspectratio=169]{beamer}
|
|
|
|
\usepackage{tikz}
|
|
\usepackage{pgfplots}
|
|
\pgfplotsset{compat=newest}
|
|
|
|
\usepackage{subcaption}
|
|
|
|
|
|
%
|
|
%
|
|
% Custom commands
|
|
%
|
|
%
|
|
|
|
|
|
\input{lib/latex-common/common.tex}
|
|
|
|
|
|
%
|
|
%
|
|
% CEL Template
|
|
%
|
|
%
|
|
|
|
|
|
\newcommand{\templates}{lib/cel-template}
|
|
|
|
\input{\templates/packages.tex}
|
|
\input{\templates/modifications.tex}
|
|
\input{\templates/makros_own.tex}
|
|
|
|
% Change the way the overview is displayed
|
|
\AtBeginSection[]
|
|
{
|
|
\begin{frame}[t]
|
|
\frametitle{Overview}
|
|
\tableofcontents[sectionstyle=show/shaded,
|
|
subsectionstyle=show/show/shaded,
|
|
subsubsectionstyle=hide]
|
|
\end{frame}
|
|
}
|
|
\AtBeginSubsubsection[]{}
|
|
\AtBeginSubsection[]{}
|
|
|
|
|
|
%
|
|
%
|
|
% Set up document
|
|
%
|
|
%
|
|
|
|
|
|
\title{Application of Optimization Algorithms for Channel Decoding}
|
|
\subtitle{\small 20.04.2023}
|
|
\author{\vspace{1.5mm} Andreas Tsouchlos}
|
|
\date{ }
|
|
|
|
\institute{Karlsruhe Institute of Technology (KIT), \\ Communications Engineering Lab (CEL) }
|
|
|
|
\tikzstyle{every node}=[font=\small]
|
|
%\setlength {\marginparwidth }{2cm}
|
|
\captionsetup[sub]{font=small}
|
|
|
|
|
|
%
|
|
%
|
|
% Document body
|
|
%
|
|
%
|
|
|
|
|
|
\begin{document}
|
|
|
|
% Select language of logo and footer text
|
|
% \selectlanguage{ngerman}
|
|
|
|
\begin{frame}[plain]
|
|
\maketitle
|
|
\end{frame}
|
|
|
|
\begin{frame}[t]
|
|
\frametitle{Overview}
|
|
\tableofcontents
|
|
\end{frame}
|
|
|
|
\setnextsection{0}
|
|
|
|
% TODO: input other sections
|
|
% TODO: Remove this; it is just for testing
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
\section{Introduction}
|
|
\begin{frame}
|
|
\frametitle{Introduction}
|
|
\begin{itemize}
|
|
\item Channel decoding is a crucial part of modern communication systems
|
|
\item Decoding algorithms are used to correct errors introduced by the channel
|
|
\item In this work, we focus on the application of optimization algorithms for channel decoding
|
|
\end{itemize}
|
|
\end{frame}
|
|
|
|
\end{document}
|