-
Notifications
You must be signed in to change notification settings - Fork 4
/
principal.tex
166 lines (132 loc) · 3.74 KB
/
principal.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
157
158
159
160
161
162
163
164
165
166
\documentclass[a4paper,12pt]{report}
\usepackage[brazilian,english]{babel}
\usepackage{indentfirst}
\usepackage{a4wide}
\usepackage[section]{placeins}
\usepackage[utf8]{inputenc}
% \usepackage[Conny]{fncychap}
\usepackage[T1]{fontenc}
\usepackage{txfonts}
\usepackage{type1cm}
\usepackage{courier}
\usepackage[scaled]{helvet}
\usepackage{epigraph}
\renewcommand*\familydefault{\sfdefault}
\hyphenation{
es-ta-be-le-ci-do
a-de-qua-da-men-te
pro-ble-mas
di-men-sio-na-men-to
mo-de-lo
}
% Controlar linhas orfas e viuvas
\clubpenalty=10000
\widowpenalty=10000
\displaywidowpenalty=10000
% Formatar notas de rodape
\usepackage[hang]{footmisc}
\setlength{\footnotemargin}{1em}
\usepackage{url}
%% Define a new 'leo' style for the package that will use a smaller font.
\makeatletter
\def\url@leostyle{%
\@ifundefined{selectfont}{\def\UrlFont{\sf}}{\def\UrlFont{\small\ttfamily}}}
\makeatother
%% Now actually use the newly defined style.
\urlstyle{leo}
\usepackage[left=3cm,top=3cm,right=2cm,bottom=2cm,includehead,ignoremp]{geometry}
\usepackage[small]{titlesec}
% \titlespacing{\chapter}{0pt}{-50pt}{*20}[0pt]
\titlespacing{\chapter}{0pt}{*-10}{*5}
% Running Headers and footers
\usepackage{fancyhdr}
% \pagestyle{fancy}
\pagestyle{headings}
% Redefine plain page style
\fancypagestyle{plain}{
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyhead[LE,RO]{\thepage}
}
\linespread{1.3}
%\pdfpagewidth=\paperwidth
%\pdfpageheight=\paperheight
% Para habilitar cálculos em dimensões
\usepackage{calc}
% Multipart figures
%\usepackage{subfigure}
% More symbols
%\usepackage{amsmath}
%\usepackage{amssymb}
%\usepackage{latexsym}
% Surround parts of graphics with box
\usepackage{boxedminipage}
% Package for including code in the document
\usepackage{listings}
% If you want to generate a toc for each chapter (use with book)
%\usepackage{minitoc}
% This is now the recommended way for checking for PDFLaTeX:
\usepackage{ifpdf}
\ifpdf
\usepackage[pdftex]{graphicx}
\else
\usepackage{graphicx}
\fi
\title{[Insira o titulo aqui tbm]}
\author{Fulano \\ [email protected] \ands
Ciclano \\ [email protected] \and
Beltrano \\ [email protected]}
\date{2009-09-13}
\usepackage[absolute]{textpos}
\begin{document}
\ifpdf
\DeclareGraphicsExtensions{.png, .pdf, .jpg, .tif}
\else
\DeclareGraphicsExtensions{.eps, .jpg}
\fi
%\maketitle
\pagestyle{empty}
\include{capitulos/00-capa}
\include{capitulos/01-falso-rosto}
\include{capitulos/02-rosto}
\include{capitulos/03-dedicatoria}
% agradecimentos (opcional)
\include{capitulos/05-epigrafe}
\pagenumbering{roman}
% Resumo e Abstract
\selectlanguage{brazilian}
\begin{abstract}
\input{capitulos/resumo}
\end{abstract}
\begin{otherlanguage}{english}
\begin{abstract}
\input{capitulos/abstract}
\end{abstract}
\end{otherlanguage}
\listoffigures \thispagestyle{headings} % Lista de Figuras
% \listoftables \thispagestyle{empty} % Lista de Tabelas
\tableofcontents \thispagestyle{headings} % Sumario
% lista de abreviaturas e siglas (opcional)
% lista de simbolos (opcional)
\pagestyle{headings}
% Elementos de Texto
\include{capitulos/1-introducao}
\include{capitulos/2-aspectos-conceituais}
\include{capitulos/3-especificacao}
\include{capitulos/4-metodologia}
\include{capitulos/5-implementacao}
\include{capitulos/6-testes}
\include{capitulos/7-conclusoes}
\addcontentsline{toc}{chapter}{Referências Bibliográficas}
\bibliographystyle{abnt-num} %\bibliographystyle{plain}
% \bibliography{bibname.bib} % bibname=nome do seu arquivo BibTeX
\include{capitulos/bibliografia}
\addcontentsline{toc}{chapter}{Glossário}
\include{capitulos/glossario}
% anexos (opcional)
\addcontentsline{toc}{chapter}{\appendixname}
\appendix
%\input{capitulos/apendice-A}
%\input{capitulos/apendice-B}
% indice remissivo (opcional)
\end{document}