Added presentation for 13_12_2022

This commit is contained in:
Andreas Tsouchlos 2022-12-12 13:09:03 +01:00
parent 0f619b73ac
commit 42b9e1ed33
7 changed files with 101 additions and 0 deletions

View File

@ -0,0 +1,2 @@
$pdflatex="pdflatex -interaction=nonstopmode %O %S";
$out_dir = 'build';

View File

@ -0,0 +1,2 @@
mkdir -p build/build
latexmk -pdf

View File

@ -0,0 +1,97 @@
\documentclass[10pt, aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
% \usepackage[ngerman]{babel}
%\usepackage{amsmath}
\usepackage{float}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepackage{subcaption}
\usepackage{listings}
\usepackage{graphicx}
\usepackage{xcolor}
\usepgfplotslibrary{colorbrewer}
\usepgfplotslibrary{external}
\tikzexternalize[prefix=build/]
\newcommand{\templates}{../lib}
% packages to be included
\input{\templates/packages.tex}
% modifications to stick to new KIT style
\input{\templates/modifications.tex}
% marcos used throughout the slides
\input{\templates/makros_own.tex}
\title{BA Besprechung - 13.12.2022}
\author{Andreas Tsouchlos}
\institute{Karlsruhe Institute of Technology (KIT), \\ Communications Engineering Lab (CEL) }
\pgfplotsset{
discard if/.style 2 args={
x filter/.code={
\edef\tempa{\thisrow{#1}}
\edef\tempb{#2}
\ifx\tempa\tempb
\def\pgfmathresult{inf}
\fi
}
},
discard if not/.style 2 args={
x filter/.code={
\edef\tempa{\thisrow{#1}}
\edef\tempb{#2}
\ifx\tempa\tempb
\else
\def\pgfmathresult{inf}
\fi
}
}
}
\begin{document}
\begin{frame}[plain]
\maketitle
\end{frame}
\begin{frame}[t]
\frametitle{Average Error vs. Mean Square Error}
\begin{figure}[H]
\begin{subfigure}[c]{0.5\textwidth}
\centering
\includegraphics[width=0.5\textwidth]{res/screenshot_cpp_avg_err}
\vspace{2mm}
\includegraphics[width=1\textwidth]{res/screenshot_eigen_squaredNorm}
\caption{Average error as used by me}
\label{fig:avg_error_me}
\end{subfigure}%
\begin{subfigure}[c]{0.5\textwidth}
\centering
\includegraphics[width=0.45\textwidth]{res/screenshot_paper_avg_err}
\vspace{2mm}
\includegraphics[width=0.35\textwidth]{res/screenshot_paper_norm_def}
\caption{Average error as defined in the paper}
\label{fig:avg_error_paper}
\end{subfigure}%
\end{figure}
\end{frame}
\end{document}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB