-
Notifications
You must be signed in to change notification settings - Fork 0
/
titlepage.tex
62 lines (43 loc) · 1.69 KB
/
titlepage.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
\begin{titlepage}
\pagecolor{founderblue}
\vspace*{1cm}
% This controls the title
% You can reposition this element by editing the numeric
% values in \node (1,1). The first value controls the
% horizontal placement, the second the vertical.
\tikz[overlay, remember picture] \node at (1,1) {
\begin{tcolorbox}[colback=berkeleygold,width=15cm,halign=right,boxrule=0pt]%%
\headingfont{\fontsize{40}{60}\selectfont This is my title:}
\end{tcolorbox}
};
% This controls the subtitle
\tikz[overlay, remember picture] \node at (1,-1.4) {
\begin{tcolorbox}[colback=berkeleygold,width=15cm,halign=right,boxrule=0pt]%%
\headingfont{\fontsize{30}{60}\selectfont This is my subtitle}
\end{tcolorbox}
};
\vspace*{1cm}
% This controls the author block. You can add or reduce the
% number of authors by simply deleting text and the \\. Each
% \\ gives you a new line
\tikz[overlay, remember picture] \node at (-4,-8) {
\begin{tcolorbox}[colback=berkeleygold,width=15cm,halign=right,boxrule=0pt]%%
\headingfont\Large Author 1 \\ Author 2 \\ Author 3
\end{tcolorbox}
};
% This controls the date block. \today produces today's date.
% You can erase \today and replace it with something else
\tikz[overlay, remember picture] \node at (-4,-12) {
\begin{tcolorbox}[colback=berkeleygold,width=15cm,halign=right,boxrule=0pt]%%
\headingfont\Large\today
\end{tcolorbox}
};
% This places the front cover logo. Replace logo.png with
% your logo
% You can reposition the logo by changing the node values
% 6.5 places the image in the center. The second number
% controls its vertical placement
\tikz[overlay, remember picture] \node at (6.5,-15) {
\includegraphics[width=0.7\textwidth]{logo.png}
};
\end{titlepage}