-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
executable file
·156 lines (122 loc) · 4.05 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
\documentclass{uninove-ppgi} %courier ou times
\begin{document}
\lstset{
language=xml,
tabsize=3,
frame=shadowbox,
rulesepcolor=\color{gray},
xleftmargin=20pt,
framexleftmargin=15pt,
keywordstyle=\color{blue}\bf,
commentstyle=\color{OliveGreen},
stringstyle=\color{red},
numbers=left,
numberstyle=\tiny,
numbersep=5pt,
breaklines=true,
showstringspaces=false,
basicstyle=\footnotesize,
emph={food,name,price},emphstyle={\color{magenta}}
}
% parametros de capa e folha de rosto (é necessário configurar todos)
\Universidade{UNIVERSIDADE NOVE DE JULHO - UNINOVE}
\Programa{PROGRAMA DE PÓS GRADUAÇÃO EM INFORMÁTICA E GESTÃO DO CONHECIMENTO - PPGIGC}
\Autor{NOME DO DISCENTE}
\Titulo{TÍTULO DO TRABALHO}
\Tipoexame{qualificação} % qualificação ou defesa
\Titulacao{Doutor} % Mestre ou Doutor
\Orientador{Dr(a). Nome do(a) Orientador(a)}
\Coorientador{Dr(a). Nome do(a) Coorientador(a)} % Se não houver, deve ser comentada a linha no arquivos uninove-ppgi.cls
% Descomentar as linhas abaixo e no arquivo "uninove-ppgi.cls" para utilizar na disciplina de seminários
%\Ingresso{XX/20XX}
%\Linha{LP1 - Modelagem e Otimização Computacional}
%\Linha{LP2 - Sistemas Inteligentes}
%\Linha{LP3 - Gestão da Tecnologia da Informação e Conhecimento}
\Ano{202X} % inserir o ano correspondente
% gera a capa
\capa
% gera folha de rosto
\folharosto
% Ficha catalográfica
%\includepdf[pages=-]{fichaCatalografica.pdf}
% Ficha de aprovação
% \includepdf[pages=-]{parecer_assinado.pdf}
% ##################### Início dos elementos pré-textuais ############################
% Dedicatória (Opcional)
\centeredchapterstyle
\input{pre_textuais/01_dedicatoria.tex}
\thispagestyle{empty}
\clearpage
% Agradecimentos (Opcional)
\input{pre_textuais/02_agradecimentos.tex}
\thispagestyle{empty}
\clearpage
% Epígrafe (Opcional)
\input{pre_textuais/03_epigrafe.tex}
% Resumo (Obrigatório)
\input{pre_textuais/04_resumo.tex}
% Abstract (Obrigatório)
\input{pre_textuais/05_abstract.tex}
% Sumário (Obrigatório)
\begingroup
\makeatletter \let\ps@plain\ps@empty \makeatother
\tableofcontents
\endgroup
\thispagestyle{empty}
% Lista de figuras
\renewcommand*\listfigurename{Lista de Ilustrações}
\listoffigures
\thispagestyle{empty}
% Lista de tabelas
\listoftables
\thispagestyle{empty}
% Lista de quadros
\listofquadros
\thispagestyle{empty}
% Lista de algoritmos (Opcional)
%\listofalgorithms
%\addcontentsline{toc}{chapter}{Lista de Algoritmos}
%\thispagestyle{empty}
% Lista de abreviaturas (Opcional)
\begin{listaabreviaturas}%
MM & Morfologia matemática \\
CC & Componente conexo \\
EE & Elemento estruturante
\end{listaabreviaturas}
% Lista de símbolos (Opcional)
\begin{listasimbolos}%
\simbolos{Conceitos básicos} {%
$ \mathbb{Z} $ & Conjunto dos números inteiros \\
$ \mathbb{N} $ & Conjunto dos números naturais \\
$ \mathbb{R} $ & Conjunto dos números reais
}
\simbolos{Imagens} {%
$ f \text{ e } g $ & Variáveis que representam imagens \\
$ p, q \in \mathcal{D} $ & Variáveis que representam pares $ (x,y) $ aqui chamados de \textit{pixels}
}
\end{listasimbolos}
% ############### Fim dos elementos pré-textuais ######################
\regularchapterstyle
% ############### Início dos Capítulos (Obrigatório ) #################
% Introdução
\input{capitulos/cap01_introducao.tex}
% Base Teórica
\input{capitulos/cap02_fundamentacao_teorica.tex}
% Conclusão
\input{capitulos/cap03_conclusao.tex}
% Trabalhos Futuros
\input{capitulos/cap04_trabalhos_futuros.tex}
% ##################### Fim dos Capítulos ############################
% Bibliografia (Obrigatório)
\bibliography{refs}
% ##################### Apêndices ############################
\renewcommand{\appendixtitle}{Apêndices}
\begin{appendixenv}
\input{pos_textuais/01_apendice.tex}
\end{appendixenv}
% ##################### Anexos ############################
\renewcommand{\appendixtitle}{Anexos}
\begin{appendixenv}
\input{pos_textuais/02_anexos.tex}
\end{appendixenv}
\end{document}