-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
executable file
·79 lines (61 loc) · 2.8 KB
/
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
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
% DONT CHANGE !
%----------------------------------------------------------------------------------------
\documentclass{report}
\newcommand*{\plogo}{\fbox{$\mathcal{PL}$}} % Generic publisher logo
\usepackage[portuguese]{babel}
\usepackage[utf8]{inputenc}
\usepackage{verbatim}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{listings}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{color}
\usepackage{varwidth}
\usepackage{graphicx}
\usepackage{mathtools}
%----------------------------------------------------------------------------------------
% TITLE PAGE
%----------------------------------------------------------------------------------------
\newcommand*{\titleGP}{\begingroup % Create the command for including the title page in the document
\centering % Center all text
\vspace*{\baselineskip} % White space at the top of the page
\rule{\textwidth}{1.6pt}\vspace*{-\baselineskip}\vspace*{2pt} % Thick horizontal line
\rule{\textwidth}{0.4pt}\\[\baselineskip] % Thin horizontal line
{\LARGE THE BIG BOOK\\ OF \\[0.3\baselineskip] ROBOTA}\\[0.2\baselineskip] % Title
\rule{\textwidth}{0.4pt}\vspace*{-\baselineskip}\vspace{3.2pt} % Thin horizontal line
\rule{\textwidth}{1.6pt}\\[\baselineskip] % Thick horizontal line
\scshape % Small caps
A number of fascinating and life-changing works \\ % Tagline(s) or further description
presented in a clear and useable way \\[\baselineskip] % Tagline(s) or further description
Florian\'opolis, 2013--inf \par % Location and year
\vspace*{2\baselineskip} % Whitespace between location/year and editors
Edited by \\[\baselineskip]
{\Large Felippe Schmoeller \\ Martin Vincent \\ Patrick J.P \\ \par} % Editor list
{\itshape The University of \\ Santa Catarina\par} % Editor affiliation
\vfill % Whitespace between editor names and publisher logo
\plogo \\[0.3\baselineskip] % Publisher logo
{\scshape 2013} \\[0.3\baselineskip] % Year published
{\large ROBOTA}\par \endgroup} % Publisher
\newcommand{\blankpage}{
\newpage
\thispagestyle{empty}
\mbox{}
\newpage
}
%----------------------------------------------------------------------------------------
% DOCUMENT
%----------------------------------------------------------------------------------------
\begin{document}
\titleGP % This command includes the title page
\newpage
\tableofcontents % This command put the sections and subsections
%----------------------------------------------------------------------------------------
% LE MASTER INCLUDE
%----------------------------------------------------------------------------------------
\include{./include/allIncludes}
% BIBLIOGRAFIA
\bibliography{bibliography.bib}
\end{document}