forked from gbaydin/oxford-poster
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnu_poster.tex
157 lines (124 loc) · 5.24 KB
/
nu_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
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
148
149
150
151
152
153
154
155
156
157
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% A beamer poster style for the University of Oxford. Atilim Gunes Baydin
% <[email protected]>, November 2016.
% Based on the I6pd2 style created by Thomas Deselaers an Philippe Dreuw.
%
% Dreuw & Deselaer's Poster
% LaTeX Template
% Version 1.0 (11/04/13)
%
% Created by:
% Philippe Dreuw and Thomas Deselaers
% http://www-i6.informatik.rwth-aachen.de/~dreuw/latexbeamerposter.php
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% -----------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
% -----------------------------------------------------------------------------
\documentclass[final,hyperref={pdfpagelabels=false}]{beamer}
% Use the beamerposter package for laying out the poster with a portrait
% orientation and an a0 paper size
\usepackage[orientation=portrait,size=a0,scale=1.3]{beamerposter}
% \usepackage[orientation=landscape,size=a0,scale=1.3]{beamerposter}
\usetheme{NU}
\usepackage[utf8]{inputenc} % allow utf-8 input
\usepackage{blindtext}
\usepackage{amsmath,amsthm,amssymb,latexsym} % For including math equations, theorems, symbols, etc
\usepackage[document]{ragged2e}
\usepackage{times}\usefonttheme{professionalfonts} % Uncomment to use Times as the main font
\usefonttheme[onlymath]{serif} % Uncomment to use a Serif font within math environments
% \boldmath % Use bold for everything within the math environment
\usepackage{booktabs} % Top and bottom rules for tables
\usepackage{microtype}
\usecaptiontemplate{\small\structure{\insertcaptionname~\insertcaptionnumber: }\insertcaption} % A fix for figure numbering
\newcommand{\shrink}{-15pt}
\def\imagetop#1{\vtop{\null\hbox{#1}}}
\let\oldbibliography\thebibliography
\renewcommand{\thebibliography}[1]{\oldbibliography{#1}
\setlength{\itemsep}{-10pt}}
% ----------------------------------------------------------------------------
% TITLE SECTION
% ---------------------------------------------------------------------------
\title{\Huge Northeastern Beamer Poster} % Poster title
\author{Author 1, Author 2, Author 3}
\institute{Khoury College of Computer Sciences, Northeastern University
\\\vspace{4mm}
\texttt{\{author1,author2,author3\}@ccs.neu.edu}}
% ------------------------------------------------------------------------------
% FOOTER TEXT
% ------------------------------------------------------------------------------
\newcommand{\leftfoot}{} % Left footer text
\newcommand{\rightfoot}{} % Right footer text
% ------------------------------------------------------------------------------
%
% FONT SIZE:
%
% \tiny sample text
% \scriptsize sample text
% \footnotesize sample text
% \small sample text
% \normalsize sample text
% \large sample text
% \Large sample text
% \LARGE sample text
% \huge sample text
% \Huge
% ------------------------------------------------------------------------------
\newcommand\eat[1]{}
% -----------------------------------------------------------------------------
\begin{document}
\addtobeamertemplate{block end}{}{\vspace*{2ex}} % White space under blocks
\begin{frame}[t] % The whole poster is enclosed in one beamer frame
\begin{columns}[t] % The whole poster consists of three major columns, each of which can be subdivided further with another \begin{columns} block - the [t] argument aligns each column's content to the top
\begin{column}{.02\textwidth}\end{column} % Empty spacer column
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Column 1
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{column}{.45\textwidth} % 1st column
\vspace{\shrink}
\begin{block}{\Large Overview}
\begin{itemize}
\item Overview 1
\item Overview 2
\item Overview 3
\item Overview 4
\end{itemize}
\end{block}
\begin{block}{\Large block two}
Block text \cite{le-2016-inference-compilation}...
\end{block}
\end{column} % End of the 1st column
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Column 2
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{column}{.02\textwidth}\end{column} % Empty spacer column
\begin{column}{.45\textwidth} % 2nd column
\vspace{\shrink}
\begin{block}{\Large Method}
\textbf{Method details.} We formulate... $\mathcal S = \{s_1, s_2, s_3, s_4, s_5, s_6 \}$
\eat{Image example:
\begin{center}
\includegraphics[width=0.9\columnwidth]{ox_brand_cmyk_rev}
\end{center}
}
\end{block}
\begin{block}{\Large Results}
Results...
\end{block}
\begin{block}{\Large References}
\nocite{*} % Insert publications even if they are not cited in the poster
\linespread{0.928}\selectfont
\footnotesize{\bibliographystyle{unsrt}
\bibliography{nu_poster}}
\end{block}
\end{column} % End of the 2nd column
\begin{column}{.02\textwidth}\end{column} % Empty spacer column
\end{columns} % End of all the columns in the poster
\end{frame} % End of the enclosing frame
\end{document}