-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
139 lines (106 loc) · 3.78 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
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
128
129
130
131
132
133
134
135
136
137
138
139
\documentclass[
% -- memoir class options --
12pt, % font size
openright, % chapters begin on odd pages only (inserts blank page if needeed)
oneside, % or twoside
a4paper, % paper size
% -- abntex2 class options --
%chapter=TITLE, % uppercase chapter titles
%section=TITLE, % uppercase section titles
%subsection=TITLE, % upptercase subsection titles
%subsubsection=TITLE,% idem
% -- babel package options --
% french, % aditional language for hyphenation
% spanish, % aditional language for hyphenation
brazil, % aditional language for hyphenation
english % the last language is the main one
]{abntex2}
% ----------------------------------------------------------
\input{configurations/packages} % PACKAGES
% ----------------------------------------------------------
% ----------------------------------------------------------
\input{pre-textual-elements/cover} % COVER AND COVER SHEET
% ----------------------------------------------------------
% ------------------------------------------------------------------------
% CONFIGURATIONS
% ------------------------------------------------------------------------
% changing blue color appearance
\definecolor{blue}{RGB}{41,5,195}
% pdf file information
\makeatletter
\hypersetup{
% pagebackref=true,
pdftitle={\@title},
pdfauthor={\@author},
pdfsubject={\printpreamble},
pdfcreator={LaTeX with abnTeX2},
pdfkeywords={guitar}{digitizer}{MIDI}{pitch}{detection}{hexaphonic},
colorlinks=true, % false: boxed links; true: colored links
linkcolor=blue, % color of internal links
citecolor=blue, % color of links to bibliography
filecolor=magenta, % color of file links
urlcolor=blue,
bookmarksdepth=4
}
\makeatother
% Spacing between lines and paragraphs
\setlength{\parindent}{1.3cm}
% Spacing between paragraphs
\setlength{\parskip}{0.2cm} % also try \onelineskip
% compiles the index
\makeindex
\makenomenclature
% ----------------------------------------------------------
\begin{document} % BEGIN DOCUMENT
% ----------------------------------------------------------
% Remove the obsolete space between lines
\frenchspacing
% ------------------------------------------------------------------------------
\pretextual % PRE TEXTUAL ELEMENTS
% ------------------------------------------------------------------------------
% cover
\printcover
% coversheet
% (* teels to build a bibliographic record)
\printcoversheet
\input{pre-textual-elements/catalographic-card}
% \input{pre-textual-elements/errata}
\input{pre-textual-elements/approval-sheet}
\input{pre-textual-elements/dedication}
\input{pre-textual-elements/acknowledgements}
% \input{pre-textual-elements/inscription}
\input{pre-textual-elements/abstracts}
% list of figures
\pdfbookmark[0]{\listfigurename}{lof}
\listoffigures*
\cleardoublepage
% list of tables
\pdfbookmark[0]{\listtablename}{lot}
\listoftables*
\cleardoublepage
\input{pre-textual-elements/acronyms}
\input{pre-textual-elements/symbols}
% Summary
\pdfbookmark[0]{\contentsname}{toc}
\tableofcontents*
\cleardoublepage
% ------------------------------------------------------------------------------
\textual % TEXTUAL ELEMENTS
% ------------------------------------------------------------------------------
\input{textual-elements/introduction}
\input{textual-elements/hardware/all}
\input{textual-elements/firmware/all}
\input{textual-elements/software/all}
\input{textual-elements/experiments-and-discussions}
\input{textual-elements/conclusion}
% ------------------------------------------------------------------------
\postextual % POST TEXTUAL ELEMENTS
% ------------------------------------------------------------------------
\bibliography{post-textual-elements/references}
%\glossary
% \input{post-textual-elements/appendices}
\input{post-textual-elements/annexes}
% Remissive index
\phantompart
\printindex
\end{document}