-
Notifications
You must be signed in to change notification settings - Fork 0
/
tese-exemplo.tex
343 lines (291 loc) · 13.9 KB
/
tese-exemplo.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
% Arquivo LaTeX de exemplo de dissertação/tese a ser apresentados à CPG do IME-USP
%
% Versão 5: Sex Mar 9 18:05:40 BRT 2012
%
% Criação: Jesús P. Mena-Chalco
% Revisão: Fabio Kon e Paulo Feofiloff
%
% Obs: Leia previamente o texto do arquivo README.txt
\documentclass[11pt,twoside,a4paper]{book}
% ---------------------------------------------------------------------------- %
% Pacotes
\usepackage[T1]{fontenc}
\usepackage[brazil]{babel}
\usepackage[latin1]{inputenc}
\usepackage[pdftex]{graphicx} % usamos arquivos pdf/png como figuras
\usepackage{setspace} % espaçamento flexível
\usepackage{indentfirst} % indentação do primeiro parágrafo
\usepackage{makeidx} % índice remissivo
\usepackage[nottoc]{tocbibind} % acrescentamos a bibliografia/indice/conteudo no Table of Contents
\usepackage{courier} % usa o Adobe Courier no lugar de Computer Modern Typewriter
\usepackage{type1cm} % fontes realmente escaláveis
\usepackage{listings} % para formatar código-fonte (ex. em Java)
\usepackage{titletoc}
%\usepackage[bf,small,compact]{titlesec} % cabeçalhos dos títulos: menores e compactos
\usepackage[fixlanguage]{babelbib}
\usepackage[font=small,format=plain,labelfont=bf,up,textfont=it,up]{caption}
\usepackage[usenames,svgnames,dvipsnames]{xcolor}
\usepackage[a4paper,top=2.54cm,bottom=2.0cm,left=2.0cm,right=2.54cm]{geometry} % margens
%\usepackage[pdftex,plainpages=false,pdfpagelabels,pagebackref,colorlinks=true,citecolor=black,linkcolor=black,urlcolor=black,filecolor=black,bookmarksopen=true]{hyperref} % links em preto
\usepackage[pdftex,plainpages=false,pdfpagelabels,pagebackref,colorlinks=true,citecolor=DarkGreen,linkcolor=NavyBlue,urlcolor=DarkRed,filecolor=green,bookmarksopen=true]{hyperref} % links coloridos
\usepackage[all]{hypcap} % soluciona o problema com o hyperref e capitulos
\usepackage[round,sort,nonamebreak]{natbib} % citação bibliográfica textual(plainnat-ime.bst)
\fontsize{60}{62}\usefont{OT1}{cmr}{m}{n}{\selectfont}
% ---------------------------------------------------------------------------- %
% Cabeçalhos similares ao TAOCP de Donald E. Knuth
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{#1}}{}}
\renewcommand{\sectionmark}[1]{\markright{\MakeUppercase{#1}}{}}
\renewcommand{\headrulewidth}{0pt}
% ---------------------------------------------------------------------------- %
\graphicspath{{./figuras/}} % caminho das figuras (recomendável)
\frenchspacing % arruma o espaço: id est (i.e.) e exempli gratia (e.g.)
\urlstyle{same} % URL com o mesmo estilo do texto e não mono-spaced
\makeindex % para o índice remissivo
\raggedbottom % para não permitir espaços extra no texto
\fontsize{60}{62}\usefont{OT1}{cmr}{m}{n}{\selectfont}
\cleardoublepage
\normalsize
% ---------------------------------------------------------------------------- %
% Opções de listing usados para o código fonte
% Ref: http://en.wikibooks.org/wiki/LaTeX/Packages/Listings
\lstset{ %
language=Java, % choose the language of the code
basicstyle=\footnotesize, % the size of the fonts that are used for the code
numbers=left, % where to put the line-numbers
numberstyle=\footnotesize, % the size of the fonts that are used for the line-numbers
stepnumber=1, % the step between two line-numbers. If it's 1 each line will be numbered
numbersep=5pt, % how far the line-numbers are from the code
showspaces=false, % show spaces adding particular underscores
showstringspaces=false, % underline spaces within strings
showtabs=false, % show tabs within strings adding particular underscores
frame=single, % adds a frame around the code
framerule=0.6pt,
tabsize=2, % sets default tabsize to 2 spaces
captionpos=b, % sets the caption-position to bottom
breaklines=true, % sets automatic line breaking
breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
escapeinside={\%*}{*)}, % if you want to add a comment within your code
backgroundcolor=\color[rgb]{1.0,1.0,1.0}, % choose the background color.
rulecolor=\color[rgb]{0.8,0.8,0.8},
extendedchars=true,
xleftmargin=10pt,
xrightmargin=10pt,
framexleftmargin=10pt,
framexrightmargin=10pt
}
% ---------------------------------------------------------------------------- %
% Corpo do texto
\begin{document}
\frontmatter
% cabeçalho para as páginas das seções anteriores ao capítulo 1 (frontmatter)
\fancyhead[RO]{{\footnotesize\rightmark}\hspace{2em}\thepage}
\setcounter{tocdepth}{2}
\fancyhead[LE]{\thepage\hspace{2em}\footnotesize{\leftmark}}
\fancyhead[RE,LO]{}
\fancyhead[RO]{{\footnotesize\rightmark}\hspace{2em}\thepage}
\onehalfspacing % espaçamento
% ---------------------------------------------------------------------------- %
% CAPA
% Nota: O título para as dissertações/teses do IME-USP devem caber em um
% orifício de 10,7cm de largura x 6,0cm de altura que há na capa fornecida pela SPG.
\thispagestyle{empty}
\begin{center}
\vspace*{2.3cm}
\textbf{\Large{Título do trabalho a ser apresentado à \\
CPG para a dissertação/tese}}\\
\vspace*{1.2cm}
\Large{Nome completo do Autor}
\vskip 2cm
\textsc{
Dissertação/Tese apresentada\\[-0.25cm]
ao\\[-0.25cm]
Instituto de Matemática e Estatística\\[-0.25cm]
da\\[-0.25cm]
Universidade de São Paulo\\[-0.25cm]
para\\[-0.25cm]
obtenção do título\\[-0.25cm]
de\\[-0.25cm]
Mestre/Doutor em Ciências}
\vskip 1.5cm
Programa: Nome do Programa\\
Orientador: Prof. Dr. Nome do Orientador\\
Coorientador: Prof. Dr. Nome do Coorientador
\vskip 1cm
\normalsize{Durante o desenvolvimento deste trabalho o autor recebeu auxílio
financeiro da CAPES/CNPq/FAPESP}
\vskip 0.5cm
\normalsize{São Paulo, fevereiro de 2011}
\end{center}
% ---------------------------------------------------------------------------- %
% Página de rosto (SÓ PARA A VERSÃO DEPOSITADA - ANTES DA DEFESA)
% Resolução CoPGr 5890 (20/12/2010)
%
% IMPORTANTE:
% Coloque um '%' em todas as linhas
% desta página antes de compilar a versão
% final, corrigida, do trabalho
%
%
\newpage
\thispagestyle{empty}
\begin{center}
\vspace*{2.3 cm}
\textbf{\Large{Título do trabalho a ser apresentado à \\
CPG para a dissertação/tese}}\\
\vspace*{2 cm}
\end{center}
\vskip 2cm
\begin{flushright}
Esta é a versão original da dissertação/tese elaborada pelo\\
candidato (Nome Completo do Aluno), tal como \\
submetida à Comissão Julgadora.
\end{flushright}
\pagebreak
% ---------------------------------------------------------------------------- %
% Página de rosto (SÓ PARA A VERSÃO CORRIGIDA - APÓS DEFESA)
% Resolução CoPGr 5890 (20/12/2010)
%
% Nota: O título para as dissertações/teses do IME-USP devem caber em um
% orifício de 10,7cm de largura x 6,0cm de altura que há na capa fornecida pela SPG.
%
% IMPORTANTE:
% Coloque um '%' em todas as linhas desta
% página antes de compilar a versão do trabalho que será entregue
% à Comissão Julgadora antes da defesa
%
%
\newpage
\thispagestyle{empty}
\begin{center}
\vspace*{2.3 cm}
\textbf{\Large{Título do trabalho a ser apresentado à \\
CPG para a dissertação/tese}}\\
\vspace*{2 cm}
\end{center}
\vskip 2cm
\begin{flushright}
Esta versão da dissertação/tese contém as correções e alterações sugeridas\\
pela Comissão Julgadora durante a defesa da versão original do trabalho,\\
realizada em 14/12/2010. Uma cópia da versão original está disponível no\\
Instituto de Matemática e Estatística da Universidade de São Paulo.
\vskip 2cm
\end{flushright}
\vskip 4.2cm
\begin{quote}
\noindent Comissão Julgadora:
\begin{itemize}
\item Profª. Drª. Nome Completo (orientadora) - IME-USP [sem ponto final]
\item Prof. Dr. Nome Completo - IME-USP [sem ponto final]
\item Prof. Dr. Nome Completo - IMPA [sem ponto final]
\end{itemize}
\end{quote}
\pagebreak
\pagenumbering{roman} % começamos a numerar
% ---------------------------------------------------------------------------- %
% Agradecimentos:
% Se o candidato não quer fazer agradecimentos, deve simplesmente eliminar esta página
\chapter*{Agradecimentos}
Texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto. Texto opcional.
% ---------------------------------------------------------------------------- %
% Resumo
\chapter*{Resumo}
\noindent SOBRENOME, A. B. C. \textbf{Título do trabalho em português}.
2010. 120 f.
Tese (Doutorado) - Instituto de Matemática e Estatística,
Universidade de São Paulo, São Paulo, 2010.
\\
Elemento obrigatório, constituído de uma sequência de frases concisas e
objetivas, em forma de texto. Deve apresentar os objetivos, métodos empregados,
resultados e conclusões. O resumo deve ser redigido em parágrafo único, conter
no máximo 500 palavras e ser seguido dos termos representativos do conteúdo do
trabalho (palavras-chave).
Texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto.
Texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto texto texto texto texto texto texto texto texto texto texto texto
texto texto.
\\
\noindent \textbf{Palavras-chave:} palavra-chave1, palavra-chave2, palavra-chave3.
% ---------------------------------------------------------------------------- %
% Abstract
\chapter*{Abstract}
\noindent SOBRENOME, A. B. C. \textbf{Título do trabalho em inglês}.
2010. 120 f.
Tese (Doutorado) - Instituto de Matemática e Estatística,
Universidade de São Paulo, São Paulo, 2010.
\\
Elemento obrigatório, elaborado com as mesmas características do resumo em
língua portuguesa. De acordo com o Regimento da Pós- Graduação da USP (Artigo
99), deve ser redigido em inglês para fins de divulgação.
Text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text
text text text text text text text text text text text text.
Text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text
text text text.
\\
\noindent \textbf{Keywords:} keyword1, keyword2, keyword3.
% ---------------------------------------------------------------------------- %
% Sumário
\tableofcontents % imprime o sumário
% ---------------------------------------------------------------------------- %
\chapter{Lista de Abreviaturas}
\begin{tabular}{ll}
CFT & Transformada contínua de Fourier (\emph{Continuous Fourier Transform})\\
DFT & Transformada discreta de Fourier (\emph{Discrete Fourier Transform})\\
EIIP & Potencial de interação elétron-íon (\emph{Electron-Ion Interaction Potentials})\\
STFT & Tranformada de Fourier de tempo reduzido (\emph{Short-Time Fourier Transform})\\
\end{tabular}
% ---------------------------------------------------------------------------- %
\chapter{Lista de Símbolos}
\begin{tabular}{ll}
$\omega$ & Frequência angular\\
$\psi$ & Função de análise \emph{wavelet}\\
$\Psi$ & Transformada de Fourier de $\psi$\\
\end{tabular}
% ---------------------------------------------------------------------------- %
% Listas de figuras e tabelas criadas automaticamente
\listoffigures
\listoftables
% ---------------------------------------------------------------------------- %
% Capítulos do trabalho
\mainmatter
% cabeçalho para as páginas de todos os capítulos
\fancyhead[RE,LO]{\thesection}
\singlespacing % espaçamento simples
%\onehalfspacing % espaçamento um e meio
\input cap-introducao % associado ao arquivo: 'cap-introducao.tex'
\input cap-conceitos % associado ao arquivo: 'cap-conceitos.tex'
\input cap-conclusoes % associado ao arquivo: 'cap-conclusoes.tex'
% cabeçalho para os apêndices
\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{\appendixname\ \thechapter}} {\MakeUppercase{#1}} }
\fancyhead[RE,LO]{}
\appendix
\include{ape-conjuntos} % associado ao arquivo: 'ape-conjuntos.tex'
% ---------------------------------------------------------------------------- %
% Bibliografia
\backmatter \singlespacing % espaçamento simples
\bibliographystyle{plainnat-ime} % citação bibliográfica textual
\bibliography{bibliografia} % associado ao arquivo: 'bibliografia.bib'
% ---------------------------------------------------------------------------- %
% Índice remissivo
\index{TBP|see{periodicidade região codificante}}
\index{DSP|see{processamento digital de sinais}}
\index{STFT|see{transformada de Fourier de tempo reduzido}}
\index{DFT|see{transformada discreta de Fourier}}
\index{Fourier!transformada|see{transformada de Fourier}}
\printindex % imprime o índice remissivo no documento
\end{document}