-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.tex
105 lines (76 loc) · 2.55 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
\documentclass[twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
% NOTE: Lot of setup for multi-file LaTeX project here. Most setup code here comes directly
% from the Overleaf guide: https://www.overleaf.com/learn/latex/Multi-file_LaTeX_projects
% General packages and setup
\usepackage{graphicx}
\graphicspath{{images/}{../images/}}
% Subfiles package for individual file compilation
\usepackage{subfiles}
% Page margin settings
% Note: Add "showframe" option to see margins
\usepackage[left=0.5in, right=0.5in, top=0.75in, bottom=0.75in]{geometry}
% Render with binding offset (for printing)
% Search for "bindingoffset" here for info about that:
% https://www.overleaf.com/learn/latex/How_to_Write_a_Thesis_in_LaTeX_(Part_2):_Page_Layout
% NOTE: DO NOT INCREASE BINDING OFFSET; messes up page breaks (need to fix this; if I care enough in the future :))
% \usepackage[left=0.5in, right=0.5in, top=0.75in, bottom=0.75in, bindingoffset=0.1in]{geometry}
% Headers
\input{resources/header.tex}
% Glossary
\input{resources/glossary.tex}
\begin{document}
% Title page
\afterpage{\innerCover} % Blank page without messing up page numbers
\subfile{resources/title_page.tex}
% Setting page numbering to roman
\newpage
\pagenumbering{roman}
% Abstact
\addcontentsline{toc}{chapter}{Abstract}
\subfile{resources/abstract}
\newpage
% Table of Contents
\tableofcontents
\newpage
% Setting page numbering to arabic
\clearemptydoublepage
\pagenumbering{arabic}
% This is where files are included, in order as necessary
% Sample include with the subfiles package:
% \subfile{sections/subfile_section}
% Introduction
\subfile{sections/01_introduction}
% Research Goals
\subfile{sections/02_research_goals}
% Literature Review
\subfile{sections/03_literature_review}
% Model Data
\subfile{sections/04_model_data}
% Unsupervised Learning Methods Survey
\subfile{sections/05_learning_methods_survey}
% Hierarchical Clustering Model
\subfile{sections/06_hierarchical_clustering_model}
% Candidate Universe Ranking
\subfile{sections/07_candidate_universe_ranking}
% Optimal Sector Universes
\subfile{sections/08_optimal_sector_universes}
% Benchmark Comparison
\subfile{sections/09_benchmark_comparison}
% Conclusion
\subfile{sections/10_conclusion}
% Future work
\subfile{sections/11_future_work}
% Appendices
\newpage
\subfile{resources/appendix}
% References
\newpage
\nocite{Weerawarana2019FECode} % Report source code
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
% Glossary
\glsaddall
\printglossary[style=altlist, nonumberlist]
\end{document}