forked from themiguelamador/ThesisIST
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tese.tex
104 lines (90 loc) · 3.27 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
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
%%
% version 2.0, 2017, Authors : Filipe Marques; (original Master Degree Thesis Template authors:) Miguel Amador and João Marques.
%%
\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}
%% ----------- COVER --------------
% After deciding the language in which you'll write the thesis -- PT (Portuguese) or EN (English) -- you can
% edit and select (uncomment) the respective cover file.
%%%---------DRAFT
\input{0.Inicio/1.cover_EN_draft.tex}
%\input{0.Inicio/1.cover_PT_draft.tex}
%%%----------FINAL --- uncomment all code bellow, and comment code above
%\input{0.Inicio/1.cover_EN_final.tex}
%%\input{0.Inicio/1.cover_PT_final.tex}
%\clearpage
%% Since I am using double sided pages, the second page should be white.
%\thispagestyle{empty}
%\cleardoublepage
%\input{0.Inicio/1.1stpage_EN_final.tex}
%%\input{0.Inicio/1.1stpage_PT_final.tex}
%%\clearpage
%%-------------------------------------
\clearpage
% Since I am using double sided pages, the second page should be white.
% Remember that when delivering the dissertation, IST requires for the cover to appear twice.
\thispagestyle{empty}
\cleardoublepage
\setcounter{page}{1} \pagenumbering{roman} % --- Start with Roman numbering ---
\baselineskip 18pt % line spacing: -12pt for single spacing
% -18pt for 1 1/2 spacing
% -24pt for double spacingnts}
%%%% Initial Chapters
\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}
\input{0.Inicio/3.Acknowledgments.tex}
\input{0.Inicio/2.citation.tex} % --- Citation (optional) ---
%% 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.Acronym.tex}
%\input{0.Inicio/8.symbols.tex} %changed to glossaries
\input{0.Inicio/8.Notation.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
%% check styles in https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management
\bibliographystyle{IEEEtranN}
%\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}