-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathposter.tex
139 lines (110 loc) · 3.31 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
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
\documentclass[a4paper, 11pt]{article}
\usepackage{mspposter}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{caption}
\usepackage{tabularx}
\usepackage{multicol}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\title{Example poster for the msp poster package}
\author{
Alexander Hewer\textsuperscript{1-2},
Ingmar Steiner\textsuperscript{1-3},
Sébastien Le Maguer\textsuperscript{1,3}\\
\vspace{12pt}
{%
\def\arraystretch{1.5}
\begin{tabular}{C{0.35\textwidth} C{0.35\textwidth}}
\textsuperscript{1}\textit{Cluster of Excellence MMCI, Saarland University} &
\textsuperscript{2}\textit{DFKI Language Technology Lab, Saarbr\"{u}cken} \\
\multicolumn{2}{c}{\textsuperscript{3}%
\textit{Computational Linguistics \& Phonetics, Saarland University}} \\
\end{tabular}
}
}
\begin{document}
\begin{poster}[themes/tholey]
\maketitle
\begin{postercolumns}[2]
\begin{posterblock}
\begin{center}
\begin{tikzpicture}
\node [fill=red!70, circle, text width=20pt] {};
\end{tikzpicture}
\captionof{figure}{A red circle.}
\end{center}
\end{posterblock}
\begin{posterblock}
\begin{center}
\begin{tikzpicture}
\node [fill=black!70, circle, text width=30pt] {};
\end{tikzpicture}
\captionof{figure}{A black circle.}
\end{center}
\end{posterblock}
\posternextcolumn
\begin{posterblock}
\begin{center}
\begin{tikzpicture}
\node [fill=blue!70, circle, text width=40pt] {};
\end{tikzpicture}
\captionof{figure}{A blue circle.}
\end{center}
\end{posterblock}
\begin{posterblock}
\begin{center}
\begin{tikzpicture}
\node [fill=orange!70, circle, text width=10pt] {};
\end{tikzpicture}
\captionof{figure}{An orange circle.}
\end{center}
\end{posterblock}
\end{postercolumns}
\begin{posterrows}[3]
\begin{posterblockW}{150}{45}
\section{Left Box}
This poster block has a fixed height and width.
\end{posterblockW}
\begin{posterblockWFill}{45}
\section{Right Box}
Here, the poster block uses the remaining space that is available on the current row.
Like the left block, it has a fixed height.
\end{posterblockWFill}
\begin{posterblock}
{\bf posterblockWFill} ends the row automatically.
\end{posterblock}
\begin{posterblock}
Blocks in this row are aligned to the largest block in the above row.
\end{posterblock}
\begin{posterblockH}{30}
This poster block has a fixed height and uses the precomputed width.
\end{posterblockH}
\end{posterrows}
\begin{postercolumns}[3]
\begin{posterblock}
\section{Left column}
\end{posterblock}
\begin{posterblock}
\section{Left column}
\end{posterblock}
\posternextcolumn
\posternextcolumn
\begin{posterblock}
\section{Right column}
\end{posterblock}
\begin{posterblock}
\section{Right column}
\end{posterblock}
\end{postercolumns}
\begin{logobar}[logobar]
\centering
\fbox{\huge \bfseries LOGO 1}
\hfill
\fbox{\huge \bfseries LOGO 2}
\hfill
\fbox{\huge \bfseries LOGO 3}
\hfill
\fbox{\huge \bfseries LOGO 4}
\end{logobar}
\end{poster}
\end{document}