This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
147 lines (124 loc) · 3.49 KB
/
main.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
%% This file implements a poster template for the 2014 Radboud
%% University corporate style.
%%
%% For comments, questions, and suggestions contact me at
%% l.onrust@let.ru.nl
%%
%% You can distribute and edit the files as you wish, but I'd
%% love to hear of any changes. Also, if you let me know that
%% you are using the template, I can keep you up-to-date on
%% future changes.
%%
%% 2 March 2015: fixed the cmyk issue, added rounded corners
%% and optional title alignment
%% Thom Wiggers
%% September-October 2015: Fixes for A1, bugfixes
%% 5 April 2018: Fix for newer version of latex
\documentclass[roundedcorners=true, titleposition=center]{beamerthemeruhuisstijlposter}
%% The class takes the following optional arguments:
%% roundedcorners: true, false (default=false)
%% titleposition: left, center, right (default=right)
%%% Change these, duh
\newcommand{\mytitle}{My Title}
\newcommand{\myauthor}{Thom Wiggers}
\newcommand{\mydate}{\today}
\usepackage{lipsum}
\usepackage{grffile}
\usepackage[british]{babel}
\usepackage[utf8]{inputenc}
\usepackage[activate={true,nocompatibility},final,tracking=true,kerning=true,spacing=false]{microtype}
\usepackage{hyperref}
\hypersetup{
pdftitle={\mytitle},
pdfauthor={\myauthor},
pdfkeywords={},
bookmarksnumbered,
pdfstartview={FitH},
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black,
breaklinks=true,
}
\usepackage{csquotes}
\usepackage{float}
\usepackage{newfloat}
\usepackage[font={Large,it}]{caption}
\usepackage[font=large]{subcaption}
\usepackage{listings}
\usepackage[all]{xy}
\usepackage{array}
\usepackage{booktabs}
%\usepackage{tabularx}
\usepackage{xspace}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{latexsym}
\usepackage{wrapfig}
\usepackage[
backend=biber,
hyperref=true,
backref=false,
maxbibnames=99
]{biblatex}
\addbibresource{bibliography.bib}
%Cryptobib:
%\addbibresource{../cryptobib/abbrev1.bib}
%\addbibresource{../cryptobib/crypto_crossref.bib}
% program floats
\DeclareFloatingEnvironment{program}
\floatname{program}{Listing}
\SetTracking{encoding={*}, shape=sc}{0}
\SetTracking{encoding={*}, shape=tt}{0}
%\boldmath
\listfiles
%%% Include help files
%\input{macros.tex}
\hyphenation{au-then-ti-ca-ted ar-chi-ve man-ual en-cryp-tion}
\institute[iCIS]{Institute for Computer and Information Sciences\\ Radboud University, Nijmegen, The Netherlands}
\title{\mytitle}
\date{\mydate}
\author{\myauthor}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\begin{frame}<2>[fragile]
\begin{columns}
\begin{column}{0.50\textwidth}
\begin{beamercolorbox}[center, wd=\textwidth]{postercolumn}
\begin{minipage}[T][\columnheight][t]{0.98\textwidth}
\begin{block}{Block 1}
\lipsum[1]
\end{block}
\begin{block}{Block 2}
\lipsum[2-3]
\end{block}
\begin{block}{Block 3}
\lipsum[4]
\end{block}
\begin{block}{Block 4}
\lipsum[5-6]
\end{block}
\end{minipage}
\end{beamercolorbox}
\end{column}
% right column
\begin{column}{0.50\textwidth}
\begin{beamercolorbox}[center, wd=\textwidth]{postercolumn}
\begin{minipage}[T][\columnheight][t]{0.98\textwidth}
\begin{block}{Block 5}
\lipsum[7-10]
\end{block}
\begin{block}{Block 6}
\lipsum[11]
\end{block}
\begin{block}{Block 7}
\lipsum[12-14]
\end{block}
\end{minipage}
\end{beamercolorbox}
\end{column}
\end{columns}
\end{frame}
\end{document}