-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
132 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
overview.pdf | ||
slides.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
\usepackage[utf8]{inputenc} | ||
\usepackage[T1]{fontenc} | ||
\usepackage[ibycus,swedish,british]{babel} | ||
\usepackage{url} | ||
\usepackage{graphicx} | ||
\usepackage{color} | ||
\usepackage{subfig} | ||
\usepackage{multicol} | ||
\usepackage{amssymb,amsmath,amsthm} | ||
\usepackage{booktabs} | ||
\usepackage[squaren,binary]{SIunits} | ||
\usepackage{verbatim} | ||
\usepackage{listings} | ||
\usepackage{csquotes} | ||
|
||
\usepackage{xparse} | ||
\ProvideDocumentEnvironment{exercise}{o}{% | ||
\setbeamercolor{block body}{bg=yellow!30,fg=black} | ||
\setbeamercolor{block title}{bg=yellow,fg=black} | ||
\IfValueTF{#1}{% | ||
\begin{block}{Exercise: #1} | ||
}{% | ||
\begin{block}{Exercise} | ||
} | ||
}{% | ||
\end{block} | ||
} | ||
|
||
\usepackage[natbib,style=alphabetic,maxbibnames=99]{biblatex} | ||
\addbibresource{bibliography.bib} | ||
|
||
\newenvironment{axiom}[1]{\begin{block}{Axiom (#1)}}{\end{block}} | ||
|
||
\DeclareMathOperator{\U}{\mathcal{U}} | ||
\DeclareMathOperator{\T}{\mathcal{T}} | ||
\DeclareMathOperator{\V}{\mathcal{V}} | ||
|
||
\DeclareMathOperator{\N}{\mathbb{N}} | ||
\DeclareMathOperator{\Z}{\mathbb{Z}} | ||
\DeclareMathOperator{\R}{\mathbb{R}} | ||
|
||
\let\stoch\mathbf\relax | ||
|
||
\DeclareMathOperator{\lequiv}{\Longleftrightarrow} | ||
\DeclareMathOperator{\xor}{\oplus} | ||
|
||
\renewcommand{\qedsymbol}{Q.E.D.} | ||
|
||
\DeclareMathOperator{\hmac}{HMAC} | ||
\DeclareMathOperator{\concat}{||} | ||
|
||
\DeclareMathOperator{\believes}{|\!\!\!\equiv} | ||
\DeclareMathOperator{\said}{|\!\!\!\sim} | ||
\DeclareMathOperator{\controls}{\Mapsto} | ||
\DeclareMathOperator{\sees}{\lhd} | ||
\newcommand{\fresh}[1]{\#(#1)} | ||
\newcommand{\encrypt}[2]{\{#1\}_{#2}} | ||
\newcommand{\share}[1]{\stackrel{#1}{\leftrightarrow}} | ||
\newcommand{\pubkey}[1]{\stackrel{#1}{\mapsto}} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
%\documentclass[handout]{beamer} | ||
\documentclass{beamer} | ||
\mode<presentation>{% | ||
\usetheme{Berlin} | ||
\setbeamertemplate{footline}{% | ||
\begin{beamercolorbox}[colsep=1.5pt]{upper separation line foot} | ||
\end{beamercolorbox} | ||
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,% | ||
leftskip=.3cm,rightskip=.3cm plus1fil]{author in head/foot}% | ||
\leavevmode{\usebeamerfont{author in head/foot}\insertshortauthor}% | ||
\hfill% | ||
{\usebeamerfont{institute in head/foot}% | ||
\usebeamercolor[fg]{institute in head/foot}\insertshortinstitute}% | ||
\end{beamercolorbox}% | ||
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,% | ||
leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}% | ||
{\usebeamerfont{title in head/foot}\insertshorttitle}% | ||
\hfill\insertframenumber% | ||
\end{beamercolorbox}% | ||
\begin{beamercolorbox}[colsep=1.5pt]{lower separation line foot} | ||
\end{beamercolorbox} | ||
} | ||
\setbeamercovered{transparent} | ||
\setbeamertemplate{bibliography item}[text] | ||
} | ||
|
||
\input{preamble.tex} | ||
|
||
\title{% | ||
Trusted Computing | ||
} | ||
\author[D.~Bosk]{% | ||
Daniel Bosk | ||
} | ||
\institute[MIUN ICS]{% | ||
Department of Information and Communication Systems,\\ | ||
Mid Sweden University, Sundsvall. | ||
} | ||
\date{\today} | ||
|
||
%\pgfdeclareimage[height=0.65cm]{university-logo}{MU_logotyp_int_CMYK.pdf} | ||
%\logo{\pgfuseimage{university-logo}} | ||
|
||
\AtBeginSection[]{% | ||
\begin{frame}<beamer> | ||
\tableofcontents[currentsection] | ||
\end{frame} | ||
} | ||
|
||
\begin{document} | ||
|
||
\begin{frame} | ||
\titlepage{} | ||
\end{frame} | ||
|
||
|
||
\input{contents.tex} | ||
|
||
%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\begin{frame} | ||
\small | ||
\printbibliography | ||
\end{frame} | ||
|
||
\end{document} |