-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
128 lines (104 loc) · 3.35 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
\documentclass[serif, english, brazilian, openany, oneside]{unotex}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{threeparttable}
\usepackage[
style=abnt-numeric,
style=abnt,
]{biblatex}
\usepackage[useregional=num]{datetime2}
\usepackage{xcolor}
\usepackage{booktabs}
\usepackage[labelfont=bf]{caption}
\usepackage{csquotes}
\usepackage{newtxtext}
\usepackage{newtxmath}
\usepackage{cleveref}
\usepackage{amsmath}
\usepackage{float}
\usepackage{mathtools}
\usepackage{ltablex}
\usepackage{ifthen}
\usepackage{tabularx,ragged2e}
\newcolumntype{C}{>{\arraybackslash}X} %9
\usepackage[
linesnumbered,
lined,
boxed,
commentsnumbered
]{algorithm2e}
% CONFIGURAÇÃO DO QUADRO
\usepackage{listings}
\lstset{ %
language=Python,
basicstyle=\footnotesize,
numbers=left,
numberstyle=\tiny\color{gray},
stepnumber=1,
numbersep=5pt,
backgroundcolor=\color{white},
showspaces=false,
showstringspaces=false,
showtabs=false,
frame=single,
rulecolor=\color{black},
tabsize=2,
captionpos=t,
breaklines=true,
breakatwhitespace=false,
escapeinside={\%*}{*)},
morekeywords={import,from,class,def,for,while,if,is,in,elif,else,not,and,or,print,break,continue,return,True,False,None,access,as,,del,except,exec,finally,global,import,lambda,pass,print,raise,try,assert}
}
% et al com itálico
\renewbibmacro*{name:andothers}{
\ifboolexpr{
test {\ifnumequal{\value{listcount}}{\value{liststop}}}
and
test \ifmorenames
}
{\ifnumgreater{\value{liststop}}{1}
{\finalandcomma}
{}%
\andothersdelim\bibstring[\emph]{andothers}}
{}}
% Adiciona arquivo de referências para o biblatex
\addbibresource{referencias.bib}
% Comandos de dados
\autor{Renato Mello Konflanz}
\instituicao{Universidade Comunitária da Região de Chapecó}
\newcommand{\unochapeco}{(Unochapecó)}
\newcommand{\dataeano}{Chapecó - SC, 2019}
\newcommand{\dataemeseano}{Chapecó, Dezembro de 2019}
\newcommand{\dataediaemeseano}{Chapecó, 04 de Dezembro de 2019}
\newcommand{\area}{Área de ciências exatas e ambientais}
\newcommand{\nomeorientador}{Prof. Marcos Antonio Moretto}
\newcommand{\tituloorientador}{M.Sc}
\newcommand{\tipocurso}{Bacharelado}
\newcommand{\titulodoautor}{Bacharel em Sistemas de Informação}
\newcommand{\nomebancaum}{Prof. Giancarlo Salton}
\newcommand{\titulobancaum}{Dr.}
\newcommand{\nomebancadois}{Prof. Sandro Oliveira}
\newcommand{\titulobancadois}{MSc.}
\newcommand{\nomesupervisor}{Prof. Sandro Oliveira}
\newcommand{\titulosupervisor}{MSc.}
\newcommand{\nomecoord}{Profa. Mônica Tissiani de Toni Pereira}
\newcommand{\titulocoord}{MSc.}
\titulo{Título do seu trabalho de conclusão de curso}
%\subtitulo{Um subtitulo se você tiver}
\curso{Sistemas de Informação}
\uf{SC}
\renewcommand{\preambulo}{Relatório do Trabalho de Conclusão de Curso submetido à Universidade Comunitária da Região de Chapecó para obtenção do título de bacharelado no curso de Sistemas de Informação.}
\data{\hoje}
% \coorientador{Beltrano da Computação}
\tipotrabalho{Trabalho de conclusão de curso (graduação)}
\begin{document}
\pretextual%
\input{pre-textuais/pre-textuais.tex}
% Início da parte textual
\textual%
\input{introducao/introducao.tex}
\input{bibliografia/bibliografia.tex}
\input{conclusao/conclusao.tex}
\postextual%
\printbibliography[heading=abnt]
\end{document}