blob: ef2bb6be3db831712fd1236536c11bdd7103b21d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
\documentclass[xetex, onlymath, handout]{beamer}
\usefonttheme{serif}
\usetheme{hsr}
% use lmodern for math
\usepackage{lmodern}
% math packages
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[T1]{fontenc}
\usepackage{beramono} % monospaced
\usepackage{roboto} % other
\renewcommand*\familydefault{\sfdefault}
% metadata
\title{Multipath fading channel demonstrator using SDR}
\author{Naoki Sean Pross \and Sara Cinzia Halter}
\date{23. December 2021}
\institute[OST]{OST FHO Campus Rapperswil}
\AtBeginSection[]
{
\begin{frame}{Table of Contents}
\tableofcontents[currentsection]
\end{frame}
}
\begin{document}
\frame{
\maketitle
}
\section{Multipath Fading}
\begin{frame}{Multipath fading}
\end{frame}
\end{document}
% vim:et:ts=2:sw=2:wrap:nolinebreak:
|