-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
144 lines (129 loc) · 2.99 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
%%
%
% ARQUIVO: main.tex
%
% VERSÃO: 1.0
% DATA: Maio de 2016
% AUTOR: Coordenação de Trabalhos Especiais SE/8
%
% Arquivo tex principal do documento de Projeto de Fim de Curso (PFC).
% Este arquivo SÓ PRECISA SER MODIFICADO NA PARTE DE CONTEÚDO:
%
% a. colocar um \include{•} para cada capítulo do documento de PFC.
%
%%
% -----
% CLASSE DO DOCUMENTO DE PFC
% -----
\documentclass{pfc}
% -----
% PACOTES LATEX USADOS NO DOCUMENTO DE PFC
% -----
\usepackage[brazilian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{float}
\usepackage{color}
\usepackage{amsfonts,amssymb}
\usepackage[authoryear]{natbib}
\usepackage{enumitem}
\usepackage{rotating}
\usepackage{lipsum}
\usepackage{lastpage}
\usepackage{stringstrings}
\usepackage{pgffor}
\usepackage{pdftexcmds}
% -----
% MARGENS DO DOCUMENTO DE PFC
% -----
\usepackage{geometry}
\geometry{
a4paper,
total={210mm,297mm},
left=25mm,
right=25mm,
top=25mm,
bottom=30mm,
textwidth=160mm,
textheight=242mm,
headheight=0mm,
headsep=0mm,
}
% -----
% DECLARAÇÕES AUXILIARES PARA REFERÊNCIAS
%
% Diferencia \citet e \citep de acordo com a NBR 10520:2002
% -----
\DeclareRobustCommand{\NATand}{;}
\DeclareRobustCommand{\NATetal}{et~al.}
\makeatletter
\renewcommand{\NAT@nmfmt}[1]{%
\ifNAT@swa\expandafter\MakeUppercase
\else\DeclareRobustCommand{\NATand}{ e}\expandafter\@firstofone\fi{{\NAT@up #1}}%
}
\makeatother
% -----
% AMBIENTE DE FIGURAS DE PFC
%
% A classe do documento está configurada SOMENTE para figuras no formato EPS.
% Logo, use PREFERENCIALMENTE este tipo de arquivo.
%
% a. os arquivos das figuras devem estar no diretório 'img'
% -----
\graphicspath{{./img/}}
% -----
% INÍCIO DO DOCUMENTO DE PFC
% -----
\begin{document}
% -----
% PARTE PRÉ-TEXTUAL DE PFC
%
% Alterar o CONTEÚDO dos arquivos siglas.tex E pre-texto.tex
% -----
\include{dados-pfc}
\include{pre-texto}
\parindent 0.75cm
% -----
% PARTE DE CONTEÚDO DE PFC
%
% Escrever cada capitulo do documento de PFC em um arquivo .tex separado.
% Adicionar os arquivos .tex ao documento com comando \include{•}
% -----
\include{introducao}
\include{cap-02}
\include{cap-03}
\include{cap-04}
\include{cap-05}
\include{cap-06}
\include{cap-07}
% -----
% PARTE DE REFERÊCIAS BIBLIOGRÁFICAS DE PFC
%
% As referências do documento de PFC devem estar no arquivo refs.bib
% Devem seguir o formato bibtex - ver Manual-Referencias.pdf para mais detalhes.
% -----
\bibliographystyle{pfc}
\bibliography{refs}
% -----
% PARTE DE APÊNDICE DE PFC
%
% Se o documento de PFC não tiver apêndices REMOVER AS LINHAS ABAIXO
% Adicionar os arquivos .tex de apêndice ao documento com comando \include{•}
% -----
% -----
% PARTE DE ANEXO DE PFC
%
% Se o documento de PFC não tiver anexos REMOVER AS LINHAS ABAIXO
% Adicionar os arquivos .tex de anexo ao documento com comando \include{•}
% -----
\inannex
\include{anexo}
\outannex
% -----
% FIM DO DOCUMENTO DE PFC
% -----
\label{theend}
\end{document}