-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
83 lines (68 loc) · 1.96 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
%
% Copyright 1999, 2007, 2009 Tomás Oliveira e Silva
% Copyright 2018, 2019, 2020, 2021, 2022, 2024, 2025 Rui Antunes
%
% LaTeX template for theses at University of Aveiro by Rui Antunes.
% https://github.com/ruiantunes/ua-thesis-template
%
% This code is based on the original LaTeX template created by
% professor Tomás Oliveira e Silva.
% http://sweet.ua.pt/tos/TeX.html
%
% For a faster compilation (debugging purposes only), using image
% placeholders, employ the "draft" option in the "graphicx" package:
% \PassOptionsToPackage{draft}{graphicx}
% Font size possible values are restricted to 10pt, 11pt and 12pt.
\documentclass[%
11pt,%
a4paper,%
twoside,%
openright,%
]{report}
% Select language (Portuguese, UK English, or US English).
% \input{tex/config/language/portuguese.tex}
% \input{tex/config/language/ukenglish.tex}
\input{tex/config/language/usenglish.tex}
% UA thesis style file.
% Choose one of the following scientific areas:
% - accounting
% - arts
% - arts+humanities
% - economy
% - education
% - engineering
% - health
% - humanities
% - misc
% - sciences
% Remove the "draft" option for the final document.
\usepackage[%
draft,%
engineering,%
% MAP,%
% oldLogo,%
% horizontalRule,%
]{uathesis}
% Additional packages.
\input{tex/config/packages.tex}
% Before begin document.
\input{tex/config/before-begin.tex}
\begin{document}
% After begin document.
\input{tex/config/after-begin.tex}
% First pages (can be commented to reduce compilation time).
\input{tex/contents/first-pages.tex}
% Table of contents (mandatory for compiling without errors).
\input{tex/contents/toc.tex}
% Chapters (can be commented).
\input{tex/contents/c1.tex}
\input{tex/contents/c2.tex}
\input{tex/contents/c3.tex}
\input{tex/contents/c4.tex}
% References (can be commented).
\input{tex/contents/references.tex}
% Appendices (can be commented).
\input{tex/contents/appendices.tex}
% To make sure the document ends with an even number page.
\cleardoublepage
\end{document}