forked from klatifch/nust-thesis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_thesis.tex
169 lines (133 loc) · 4.22 KB
/
_thesis.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
\documentclass[11pt,a4paper,oneside]{book} %scrbook book report
\usepackage[
backend=biber,
style=numeric,
sorting=ynt
]{biblatex}
\addbibresource{references.bib}
% Essential packages
\usepackage{amsmath, amssymb, amsthm} % AMS Packages
\usepackage{graphicx,color} % Packages for graphics and color
\usepackage[left=1.5in, right=1in, top=1in, bottom=1in, includefoot, headheight=13.6pt]{geometry}
\PassOptionsToPackage{printonlyused,smaller}{acronym}
\usepackage{acronym}
% Optional customization packages
\usepackage{lmodern} % Custom fonts
\usepackage[T1]{fontenc} % Ensure correct font encoding
\usepackage{mathptmx} % Times New Roman Font accross the document
\usepackage{url}
% Customising chapter headings - sectsty.pdf
\usepackage{sectsty}
\chapterfont{\Large\sc\centering}
\chaptertitlefont{\centering}
\subsubsectionfont{\centering}
\usepackage[hang, small, bf, margin=0pt, tableposition=bottom]{caption}
\setlength{\abovecaptionskip}{10pt} % Custom captions
% Tables
\usepackage[table]{xcolor}
\usepackage{colortbl}
\newcommand{\mc}[2]{\multicolumn{#1}{c}{#2}}
\definecolor{Gray}{gray}{0.83}
\newcolumntype{x}{>{\columncolor{Gray}}c}
\newcolumntype{y}{>{\columncolor{white}}c}
% Page layout
\parindent 0pt
\parskip 1ex
\renewcommand{\baselinestretch}{1.49}
\numberwithin{equation}{section}
\renewcommand{\bibname}{References}
\renewcommand{\contentsname}{Contents}
\pagenumbering{roman}
\newcommand{\acrolabel}[1]{\makebox[3cm][l]{\textbf{#1}}}
\newenvironment{acronyms}{\begin{list}{}{\renewcommand{\makelabel}{\acrolabel}}}{\end{list}}
% \includeonly{tex/chapter1} % Option to generate specific chapters
% Customising headers - fancyhdr.pdf
\usepackage{fancyhdr}
\pagestyle{fancy}
\rhead{}
\lhead{\nouppercase{\textsc{\leftmark}}}
\renewcommand{\headrulewidth}{0pt}
\makeatletter
\renewcommand{\chaptermark}[1]{\markboth{\textsc{\@chapapp}\ \thechapter:\ #1}{}}
\makeatother
% Hyperreferencing and citations
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=blue,
filecolor=blue,
linkcolor=blue,
urlcolor=blue
}
% Section symbol
\usepackage{cleveref}
\crefname{section}{\S}{\S\S}
\Crefname{section}{\S}{\S\S}
\crefname{subsection}{\S}{\S\S}
\Crefname{subsection}{\S}{\S\S}
\usepackage{tabu}
\usepackage{adjustbox}
\usepackage{booktabs}% for better rules in the table
\usepackage{graphicx}
%\usepackage{subfigure}
%\usepackage{color}
%\usepackage{colortbl}
%\usepackage{soul}
%\usepackage{listings}
%\lstloadlanguages{Java,XML}
%\lstset{frame=lines}
\usepackage{./styles/astron}
%\usepackage{xspace}
%\usepackage[leqno]{amsmath}
%\usepackage{hyperref}
%\usepackage{sfmath}
%\usepackage{setspace}
\usepackage{./styles/nust}
\graphicspath{{./img/}{./figs/}}
\title{Main Title}
%\subtitle{A sub-title}
\author{Student Name}
\regno{Spring-2022-MS-CS CMSID School}
\degree{\MSCS} % MSCSE, MSCCS %% Degree Title and It's abbreviation
\school{\SEECS} %SChool abbreviation and Full Name
\adviser{Supervisor Name }
\adviserAffiliation{Department of Computing }
\date{August 2023}
% \setcounter{tocdepth}{2}
% \setstretch{1.1}
% \linespread{1.1}
\begin{document}
\maketitle
\input{Preface/Approval}
\input{Preface/Acceptance}
\input{Preface/Dedication}
\input{Preface/OrginalityCertificate}
\input{Preface/Acknowldgment}
\input{Preface/Abstract}
\tableofcontents
\listoftables
\listoffigures
\input{Acronym}
\newpage
% \lstlistoflistings
\resetpagenumbering
\input{chapters/chapter1-intro}
\input{chapters/Chapter2-LiteratureReview}
\input{chapters/chapter3-Methodology}
\input{chapters/Chapter4-Results}
\input{chapters/chapter5-Discussion}
\input{chapters/chapter6-Conclusion}
\input{chapters/chapter7-Recommendations}
% \bibliographystyle{ieeetr}
% \bibliography{references}
\printbibliography
\begin{appendix}
\chapter{Achievements}
If the thesis resulted to produce any publications or any product. This can be listed here.
\chapter{Appendix A}
The separate numbering of appendices is also supported by LaTeX. The \textit{appendix} macro can be used to indicate that following chapters are to be numbered as appendices. Only use the \textit{appendix} macro once for all appendices.
% \pagenumbering{gobble}
\include{misc/checklista}
\include{misc/checklistb}
\end{appendix}
\end{document}