-
Notifications
You must be signed in to change notification settings - Fork 0
/
poster.tex
79 lines (56 loc) · 1.86 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
% !TeX program=lualatex
\documentclass[25pt, a0paper, portrait]{conferenceposter}
%\geometry{paperheight=48in,paperwidth=36in} % for different sizes than A paper
\usepackage[english]{babel}
\usepackage{microtype}
%\usepackage[T1]{fontenc}
%\usepackage[defaultsans,default]{opensans}
\usepackage{fontspec} % use with lualatex or xelatex
\usepackage{arev} % math font
\setmainfont{Open Sans}
\usepackage{blindtext}
\definecolorpalette{myColorPalette}{
\definecolor{colorOne}{HTML}{ECF1FC}
\definecolor{colorTwo}{HTML}{ECF1FC}
\definecolor{colorThree}{HTML}{7EBDC2}
\definecolor{bgcolorAlt}{HTML}{FCFCFF}
\definecolor{fgcolor}{HTML}{222244}
}
\usecolorstyle[colorPalette=myColorPalette]{conferenceColorStyle}
\title{\boldmath{}Paper with a Long Title Containing Some Math Symbols like $\alpha$ and $L$, and the Title is so long that it definitely spans multiple lines}
\author{First Author\affilmark{1}, Second Author\affilmark{1,2}, and Third Author\affilmark{2}}
\institute{%
\affilmark{1} Department of Science, University of City, Country\\
\affilmark{2} Department of Engineering, Other University, Different Country
}
\titlegraphic{\includegraphics[height=.08\paperheight]{logo.png}}
\usetitlestyle[titlebackgroundheight=.078\paperheight,titlegraphictotitledistance=1cm]{conferenceTitleStyle}
\begin{document}
\maketitle
\block{}
{
\blindtext
}
\begin{columns}
\column{0.4}
\block{More text}{Text and more text}
\column{0.6}
\block{Something else}{Here, \blindtext \vspace{4cm}}
\note[targetoffsetx=-9cm, targetoffsety=-5.5cm, width=0.5\linewidth]{This is a note...}
\end{columns}
\begin{columns}
\column{0.5}
\block{A figure}
{
\begin{center}
\includegraphics[width=0.2\textheight]{logo.png}
\end{center}
}
\block{Outer Block}{
\blindtext
\innerblock{Inner Block}{\blindtext}
}
\column{0.5}
\block{Description of the figure}{\Large\blindtext[2]}
\end{columns}
\end{document}