-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcontest-web.tex
73 lines (60 loc) · 1.61 KB
/
contest-web.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
\documentclass[web,oneside]{bapc}
% Use \testsession for test sessions.
\makeatletter
\newcommand\testsession{\renewcommand\@testsession{1}}
\newcommand\@testsession{0}
% Use \title to set the title.
% Use \subtitle for subtitle.
\newcommand\subtitle[1]{\renewcommand\@subtitle{#1}}
\newcommand\@subtitle{}
% Use \author for name in licence, and \copyrightyear for the year.
\newcommand\copyrightyear[1]{\renewcommand\@copyrightyear{#1}}
\newcommand\@copyrightyear{}
%-------------------------------------------------------------------------------
% Actual document starts here.
%-------------------------------------------------------------------------------
\begin{document}
\makeatother
\input{contest_data.tex}
\makeatletter
% TITLEPAGE
\sffamily
\begin{center}
{\fontsize{12mm}{12mm}\selectfont \@title \par}
\vspace{2.8mm}
{\LARGE\fontfamily{ppl}\selectfont\emph{\@subtitle}}
\vfill
\vfill
\includegraphics[height=5cm]{\logofile}
\vfill
\listofproblems
\end{center}
% 2ND PAGE WITH CC-BY-SA LICENCE
\newpage
\thispagestyle{empty}
\vspace*{\fill}
\begin{tabular}{ll}
\includegraphics{images/cc-by-sa.pdf}
&
\begin{minipage}[b][3em][t]{.8\textwidth}
\footnotesize
\vspace*{-4mm}
Copyright \copyright\ \@copyrightyear\ by \@author.
This work is licensed under the
\\
Creative Commons Attribution-ShareAlike 4.0 International License.
\\
\url{https://creativecommons.org/licenses/by-sa/4.0/}
\end{minipage}\\
\end{tabular}
% Include the problems.
\makeatother
\input{./contest-problems.tex}
\makeatletter
% An empty page at the end for non-testsession.
\if\@testsession0
\clearpage
\pagestyle{empty}
\mbox{}
\fi
\end{document}