-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanuscript.tex
More file actions
127 lines (97 loc) · 2.48 KB
/
manuscript.tex
File metadata and controls
127 lines (97 loc) · 2.48 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
\documentclass[12pt,a4paper,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{ragged2e}
\usepackage{parskip}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{titlesec}
\usepackage{textcomp}
\usepackage{enumitem}
\usepackage{newunicodechar}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{float}
\usepackage{longtable}
\usepackage{xltabular}
\usepackage{ragged2e}
\usepackage{caption}
\usepackage{url}
\usepackage[hidelinks]{hyperref}
\usepackage[table]{xcolor}
\usepackage[helvetica]{quotchap}
\usepackage[font=normalsize,labelfont={bf}]{caption}
\usepackage[backend=biber, style=ieee, giveninits=true]{biblatex}
\usepackage{appendix}
% Margins
\geometry{left=2.5cm, right=2.5cm, top=2.5cm, bottom=2.5cm}
% Add blankpages
\newcommand{\blankpage}{
\newpage
\thispagestyle{empty}
\mbox{}
\newpage
}
% Add references
\addbibresource{refs.bib}
\setlength\bibitemsep{\baselineskip}
\DeclareFieldFormat{urldate}{}
% Font color
\definecolor{indigo}{HTML}{1F497D}
% Font for tables
\definecolor{lightgray}{HTML}{EEEEEE}
% Change chapter format
% \titleformat{\chapter}
% {\normalfont\LARGE\bfseries}{\thechapter.}{1em}{}
\renewcommand{\sectfont}{\bfseries}
\renewcommand{\chapterheadstartvskip}
% Trademark symbol as a superscript
\newcommand{\regsup}{\textsuperscript{\textregistered}}
% Tiny textbullet
\newunicodechar{•}{\textbullet}
\hypersetup{
colorlinks=true,
linkcolor=black,
citecolor=black,
urlcolor=blue
}
\captionsetup{font=footnotesize}
% Parts of the document
\begin{document}
\justifying{}
% Stop page numbering for preliminary sections
\pagenumbering{gobble}
\include{contents/1_cover}
\blankpage{}
\include{contents/2_abstract_eng}
\blankpage{}
\include{contents/3_acknowledgements}
\blankpage{}
% Index
\tableofcontents
\blankpage{}
\listoffigures
\blankpage{}
\listoftables
\blankpage{}
% Start page numbering
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
% \AddLabels
\include{contents/4_intro}
\include{contents/5_objetives}
\blankpage{}
\include{contents/6_method}
\include{contents/7_results}
\include{contents/8_discussion}
\include{contents/9_conclusion}
\blankpage{}
\printbibliography
\blankpage{}
\appendix
\setcounter{figure}{0} % Reboot fig count
\setcounter{table}{0} % Reboot table count
\include{contents/10_supplementary}
\end{document}