-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtese.tex
65 lines (58 loc) · 1.76 KB
/
tese.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
\documentclass[defaultstyle,10pt,master,Helvetica]{01.thesis}
%Use 01.thesis_pt instead for PT version
%Dummy text if written by default in English. Just changed to whatever you need.
% Helvetica is a similar font to Arial, with small differences.
%% Packages
\input{00.Definitions/packages.tex}
%% Page formatting
\input{00.Definitions/pagesetup.tex}
%-----------------------------------------------------------
%-----------------------------------------------------------
\begin{document}
%% Use Main document Language
\selectlanguage{english}
%% ------
\pagestyle{begin}
\input{0.Inicio/1.cover.tex}
\input{0.Inicio/2.citation.tex}
\input{0.Inicio/3.Acknowledgments.tex}
\selectlanguage{english}
\input{0.Inicio/4.Abstract.tex}
\input{0.Inicio/5.Keywords.tex}
\selectlanguage{portuguese}
\input{0.Inicio/4.Resumo.tex}
\input{0.Inicio/5.PalavrasChave.tex}
%% Use Main document Language
\selectlanguage{english}
%% ------
\input{0.Inicio/6.Tables.tex}
\acresetall
%% Remain list of table titles are set manualy
\input{0.Inicio/7.Acronim.tex}
\input{0.Inicio/8.symbols.tex}
%% Use Main document Language
\selectlanguage{english}
%% Define the title of Chapter Table of Contents
\mtcsettitle{minitoc}{Contents}
%% ------
\pagestyle{documentsimple}%Simple head
\input{1.Introduction/main.tex}
\input{2.Chapter/main.tex}
\input{99.Conclusions/conclusions.tex}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
%% Use with Cite and Natbib
\bibliographystyle{IEEEtran}
\bibliography{02.biblio}
%% Use with Biblatex (.bib file is set in Packages) (Not working)
%\printbibliography
\cleardoublepage
\begin{appendices}
\begin{appendix}
\pagenumbering{bychapter}
\input{Appendices/appendixA.tex}
\cleardoublepage
\end{appendix}
\end{appendices}
\end{document}