forked from Limmen/cdis-poster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poster.tex
92 lines (81 loc) · 1.75 KB
/
poster.tex
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
\documentclass[t,dvipsnames]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{exscale} % Fixes issues with lmodern math symbols
\usepackage{graphicx}
\graphicspath{ {./images/} }
\usepackage{tikz}
\usetikzlibrary{positioning, arrows.meta}
\tikzset{%
eda/.style={-{Latex[scale=3]}},
edc/.style={eda, color=black!25},
rv/.style={draw, circle, minimum size=3cm},
ob/.style={rv, fill=black!25}
}
\usepackage{listings}
\lstset{%
language=Lisp,
basicstyle=\ttfamily\footnotesize
}
\usepackage[orientation=portrait,size=a0,scale=1.4]{kthposter}
\title{%
\huge My Title
}
\author{%
\textit{CDIS Spring Conference, 25 May 2023}\\
Author1 (\texttt{author1@kth.se})
\and
Author2 (\texttt{author2@kth.se})
}
\institute{%
Center for Cyber Defense and Information Security (CDIS)\\
KTH Royal Institute of Technology
}
\logoLeft{%
\includegraphics[height=9cm, width=9cm]{kth_logo} \\
}
\logoRight{%
\hfill
\begin{tikzpicture}
\node[inner sep=0cm] (pic)%
{\includegraphics[height=9cm, width=9cm, keepaspectratio]{cdis.png}};
\end{tikzpicture}
}
\newlength{\cheight}
\setlength{\cheight}{103cm}
\begin{document}
\begin{frame}[fragile]{}
\begin{minipage}[c][\cheight][t]{0.48\linewidth}
\begin{block}{Motivation}
TODO
\end{block}
\vspace{1cm}
\begin{block}{Use Case}
TODO
\end{block}
\vspace{1cm}
\begin{block}{Formal Model}
TODO
\end{block}
\vspace{1cm}
\begin{block}{References}
TODO
\end{block}
\end{minipage}
\hfill
\begin{minipage}[c][\cheight][t]{0.48\linewidth}
\begin{block}{Our Approach}
TODO
\end{block}
\vspace{1cm}
\begin{block}{Results}
TODO
\end{block}
\vspace{1cm}
\begin{block}{Theorems}
TODO
\end{block}
\end{minipage}
\end{frame}
\end{document}