129 lines
4.4 KiB
TeX
129 lines
4.4 KiB
TeX
%!TEX program = lualatex
|
|
%!TEX encoding = utf8
|
|
|
|
%--------------------------------------------------------------------------
|
|
% Document setup
|
|
%--------------------------------------------------------------------------
|
|
\documentclass[compress,aspectratio=169,fleqn,hyperref={hyperfootnotes=false}]{beamer}
|
|
%\usepackage{fontspec}
|
|
%\usepackage{unicode-math}
|
|
%\setmainfont{Latin Modern Roman}
|
|
\usepackage[utf8]{luainputenc}
|
|
%\usepackage[utf8]{inputenc}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[english,ngerman]{babel}
|
|
|
|
%--------------------------------------------------------------------------
|
|
% Package dependencies
|
|
%--------------------------------------------------------------------------
|
|
%\usepackage{pgfpages} % required for notes on second screen
|
|
\usepackage{graphicx}
|
|
\usepackage{amsmath}
|
|
\usepackage{amssymb}
|
|
%\usepackage{algpseudocode}
|
|
%\usepackage{algorithmicx}
|
|
%\usepackage{wasysym}
|
|
\usepackage[binary-units=true]{siunitx}
|
|
\usepackage{enumitem}
|
|
\usepackage{algorithm}
|
|
\usepackage{algpseudocode}
|
|
\usepackage{tcolorbox}
|
|
|
|
\usepackage{xcolor} % more colors
|
|
\usepackage{tikz} % use after xcolor
|
|
\usepackage[absolute,overlay]{textpos} % debug: showboxes
|
|
|
|
|
|
%\usepackage{showframe}
|
|
|
|
%\usetikzlibrary{arrows, arrows.meta, backgrounds, graphdrawing, graphs, positioning, decorations, decorations.markings, fit, quotes}
|
|
%\usegdlibrary{circular, layered, trees, force}
|
|
|
|
\sisetup{detect-all}
|
|
|
|
%--------------------------------------------------------------------------
|
|
% Theme setup
|
|
%--------------------------------------------------------------------------
|
|
\usetheme{fhws}
|
|
\usefonttheme{professionalfonts}
|
|
|
|
|
|
|
|
\graphicspath{{./gfx/}}
|
|
|
|
%--------------------------------------------------------------------------
|
|
% Macros
|
|
%--------------------------------------------------------------------------
|
|
%\input{lib/numberLine.tex}
|
|
%\input{lib/pipeline.tex}
|
|
%\input{resources/macros.tex}
|
|
%\input{resources/problems.tex}
|
|
%\input{resources/symbols.tex}
|
|
|
|
|
|
\newcommand{\dop} [1]{\ensuremath{ \mathop{\mathrm{d}#1} }}
|
|
\newcommand{\R} {\ensuremath{ \mathbf{R} }}
|
|
\newcommand{\Z} {\ensuremath{ \mathbf{Z} }}
|
|
\newcommand{\N} {\ensuremath{ \mathbf{N} }}
|
|
\newcommand{\expp} [1]{\ensuremath{ \exp \left( #1 \right) }}
|
|
\newcommand{\landau}[1]{\ensuremath{ \mathcal{O}\left( #1 \right) }}
|
|
\newcommand{\Lideal} {\ensuremath{ L_{\text{ideal}} }}
|
|
%\newcommand{\floor} [1]{\ensuremath{ \lfloor #1 \rfloor }}
|
|
%\newcommand{\etal} [1]{#1~et~al.}
|
|
\newcommand{\G} [2]{\ensuremath{ \mathcal{N} \left(#1,#2\right) }}
|
|
\newcommand{\VecTwo}[2]{\ensuremath{\left[\begin{smallmatrix} #1 \\ #2 \end{smallmatrix}\right] }}
|
|
\newcommand{\E} [1]{\ensuremath{ \operatorname{E} \left[ #1 \right] }}
|
|
|
|
\renewcommand{\vec}[1]{\bm{#1}}
|
|
|
|
\definecolor{Chameleon2}{HTML}{73d216}
|
|
\definecolor{ScarletRed2}{HTML}{cc0000}
|
|
|
|
\newlist{proconlist}{itemize}{1}
|
|
\newcommand\itempro{\item[\textcolor{Chameleon2}{$+$}]}
|
|
\newcommand\itemcon{\item[\textcolor{ScarletRed2}{$-$}]}
|
|
|
|
|
|
%--------------------------------------------------------------------------
|
|
% Document config
|
|
%--------------------------------------------------------------------------
|
|
\title{\mbox{Fast Kernel Density Estimation} \linebreak \mbox{using Gaussian Filter Approximation}}
|
|
\subtitle{Indoor Navigation Research Group}
|
|
\date{12 July 2018}
|
|
\author{M. Bullmann\textsuperscript{1}, T. Fetzer\textsuperscript{1}, F. Ebner\textsuperscript{1}, F. Deinzer\textsuperscript{1}, and M. Grzegorzek\textsuperscript{2}}
|
|
\institute{\textsuperscript{1} University of Applied Sciences Würzburg-Schweinfurt \\ \textsuperscript{2} University of Siegen - Pattern Recognition Group}
|
|
|
|
%--------------------------------------------------------------------------
|
|
% Notes settings
|
|
%--------------------------------------------------------------------------
|
|
%\setbeameroption{show notes on second screen=left}
|
|
|
|
|
|
|
|
%--------------------------------------------------------------------------
|
|
% Presentation
|
|
% For great usage instructions, have a look at this article:
|
|
% https://en.wikibooks.org/wiki/LaTeX/Presentations
|
|
%--------------------------------------------------------------------------
|
|
|
|
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
|
|
|
|
|
|
\begin{document}
|
|
\maketitle
|
|
|
|
% \begin{frame}[fragile]
|
|
% \frametitle{Table of contents}
|
|
% \tableofcontents
|
|
% \end{frame}
|
|
|
|
\input{chapters/system}
|
|
|
|
\end{document}
|
|
|
|
|
|
|
|
|
|
|
|
|