forked from ruiantunes/ua-thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
65 lines (50 loc) · 1.62 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
%
% Copyright 1999, 2007, 2009 Tomás Oliveira e Silva
% Copyright 2018, 2019, 2020, 2021, 2022 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
%
% Font size possible values are restricted to 10pt, 11pt and 12pt.
\documentclass[11pt,twoside,a4paper,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.
% Input your scientific area (accounting, arts, economy, education,
% engineering, health, humanities, or sciences).
% Remove the "draft" option for the final document.
\usepackage[engineering,draft]{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.
\input{tex/contents/first-pages.tex}
% Chapters.
\input{tex/contents/c1.tex}
\input{tex/contents/c2.tex}
\input{tex/contents/c3.tex}
\input{tex/contents/c4.tex}
% Bibliography.
% To cite all the references (debugging purposes).
% \nocite{*}
% The bibliography using BibLaTeX.
\printbibliography
% Appendices.
\begin{appendices}
\crefalias{chapter}{appendix}
\input{tex/contents/a1.tex}
\input{tex/contents/a2.tex}
\end{appendices}
% To make sure the document ends with an even number page.
\cleardoublepage
\end{document}