-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
91 lines (78 loc) · 1.95 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
80
81
82
83
84
85
86
87
88
89
90
91
%
% Authors: Iñaki Lorente
%
%=================================
% CONFIGURATION
%=================================
% Class info
% bookest: \part{}
% \chapter{}
% \section{}
% \subsection{}
% \subsubsection{}
% \paragraph{}
% \subparagraph{}
\documentclass[oneside]{bookest}
\usepackage{geometry}
\geometry{left=2cm,right=2cm, top=1cm, bottom=2cm}
\usepackage[toc]{appendix}
\usepackage{titletoc}
\usepackage{tocloft}
% Document variables
\renewcommand{\thechapter}{}
\newcommand{\sectiondir}{sections/}
% Colours
\definecolor{light_blue}{RGB}{120, 203, 225}
\definecolor{dark_blue}{RGB}{49, 101, 128}
% Style
\usepackage{fancyhdr}
\usepackage{blindtext}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\fancyhf{}
\fancypagestyle{plain}{
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.4pt}
\fancyfoot[R]{\thepage}
\fancyfoot[C]{\textbf{iggy} \color{dark_blue}{\textbf{penguin}}}
}
\pagestyle{plain}{
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.4pt}
\fancyfoot[R]{\thepage}
\fancyfoot[C]{\textbf{iggy} by \color{dark_blue}{\textbf{penguin}}}
}
% Remove hiperlink borders
\hypersetup{%
pdfborder = {0 0 0}
}
%=================================
% EXTRA PACKAGES
%=================================
\usepackage{import}
\usepackage{mathptmx}
\usepackage{helvet}
\usepackage{wallpaper}
\usepackage{color}
\usepackage[final]{pdfpages}
\usepackage{setspace}
\usepackage{fancyvrb}
%====================================================
%------------------ BEGIN DOCUMENT ------------------
%====================================================
\begin{document}
% (1) COVER
\import{\sectiondir}{Cover}
\maketitle
\frontmatter
% (2) TOC
\tableofcontents
\thispagestyle{empty}
\mainmatter
% (3) SECTIONS
\onehalfspacing % (package setspace)
\import{\sectiondir}{Intro}
\import{\sectiondir}{Activities}
\end{document}