-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposter-main.tex
163 lines (127 loc) · 4.04 KB
/
poster-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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
%% TimmLiTeX
%% Version: v0.9.1
%% Last modified: 2024-02-16 09:32:26
\documentclass[
17pt,%12pt, 14pt, 17pt, 20pt, 25pt
a1paper,%a0paper,a1paper,a2paper
%landscape,portrait
%margin=0mm, % between paper and poster
%innermargin=15mm, % between poster and outermost blocks
%colspace=15mm, % horizontal spacing between successive columns
%subcolspace=8mm, % horizontal spacing between successive columns in the subcolumn environment
%blockverticalspace=15mm, % between two blocks
dvipsnames,
]{tikzposter}
\input{basic-text-settings}
%==============================
% Optional packages & settings
%------------------------------
% \input{TLmacros}
%% Tables
\usepackage{booktabs} % Nicer tables
%% Graphics
\input{packages/tikz-settings}
\input{packages/forest-settings}
%% Linguistics
\input{packages/linguex-settings}
\input{packages/langsci-avm-settings}
% \usepackage[inference]{semantic} % for CCG
% \usepackage{packages/ccg}
%% Listings settings
\usepackage{listings}
\lstset{basicstyle=\ttfamily,tabsize=2,breaklines=true}
\RequirePackage{color}
\definecolor{lightgray}{gray}{0.7}
%% Add syntax highlighting for specific programming languages
% \input{packages/listings-xmg-settings.tex}
\definecolor{mygray}{gray}{0.9}
\definecolor{HHUblue}{HTML}{006AB3}
\definecolor{lightgray}{gray}{0.7}
\newcommand{\affilsup}[1]{{\color{gray}$^{\text{#1}}$}}
%==============================
% Title
%------------------------------
\setlength{\fboxsep}{3pt}
\title{Title of poster}
%% \parbox is needed with linebreaks
% \title{\hspace{-2em}\parbox{\textwidth}{\centering
% Title of poster}}
\author{Author Name(s)\affilsup{1}}
\institute{\affilsup{1}Affiliation}
\titlegraphic{\hspace*{1cm}\raisebox{0ex}{\includegraphics[width=5cm]{graphics/sfb-logo-quer.pdf}}\hspace{36cm}\raisebox{0ex}{\includegraphics[width=10cm]{graphics/hhu-logo-hres.pdf}}}
\settitle{
\centering
\color{titlefgcolor}{\bfseries\Huge\@title\par}
\vspace*{2em}
{\huge\@author\par} \vspace*{1em} {\LARGE\@institute}
\raisebox{0cm}[0pt]{\@titlegraphic}
}
%==============================
% Poster style
%------------------------------
\input{poster-style}
\tikzposterlatexaffectionproofoff
\defineblockstyle{greybox}{}{
\draw[color=gray,fill=mygray] (blockbody.south west)
rectangle (blockbody.north east);
\ifBlockHasTitle
\draw[color=white] (blocktitle.south west)
rectangle (blocktitle.north east);
\fi
}
%==============================
% Poster
%------------------------------
\begin{document}
\maketitle[
%width=10cm, % width of the title portion of the poster
%roundedcorners, linewidth, innersep % box style of the title
%titletotopverticalspace=0cmm, titletoblockverticalspace=0cm
%titlegraphictotitledistance=0cm, % vertical distance between the titlegraphic and title description
%titletextscale=2, % relative scaling of the text of the title
]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\vspace{-5cm}
\block{Big box}{
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Block text
}
\input{poster-examples}
\begin{columns}
\column{0.5}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\block{First column block}{
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Block text
}
\column{0.5}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\block{Second column block}{
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Block text
}
\end{columns}
%==============================
% List of references
%------------------------------
\defineblockstyle{noframe}{}{
\draw[color=white] (blockbody.south west)
rectangle (blockbody.north east);
\ifBlockHasTitle
\draw[color=white] (blocktitle.south west)
rectangle (blocktitle.north east);
\fi
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\useblockstyle[linewidth=0pt]{noframe}
\block[linewidth=0pt]{}{
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\vspace{-5.5ex}
\tiny
\printbibliography[heading=none]
}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: