-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
77 lines (51 loc) · 1.45 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
\documentclass[12pt]{report}
\input{format/required_packages}
\input{format/page_style_preamble}
\input{format/math_commands}
\input{format/theorem_environments}
\input{format/title_page_info}
\input{format/abstract}
% other adhoc configurations
\pdfcompresslevel=9
\addtolength{\voffset}{-4em}
\begin{document}
\pagenumbering{roman}
\thesistitlepage
\thesiscopyrightpage
\addcontentsline{toc}{chapter}{Abstract}
\thesisabstract
\addcontentsline{toc}{chapter}{Dedication}
\thesisdedicationpage
% \addcontentsline{toc}{chapter}{Acknowledgments}
% \thesisacknowledgments
\makeatletter \renewcommand{\@dotsep}{10000} \makeatother
\renewcommand{\contentsname}{\normalsize{Table of Contents}}
\tableofcontents
% \addcontentsline{toc}{chapter}{List of Tables}
% \listoftables
% \addcontentsline{toc}{chapter}{List of Figures}
% \listoffigures
\newpage
\pagenumbering{arabic}
\chapter{Introduction}
\label{chp::introduction}
\input{chapters/ch1}
\chapter{Background}
\label{chp::background}
\input{chapters/ch2}
\chapter{How to Insert Figures}
\label{chp::without_uncertainty}
\input{chapters/ch3}
\chapter{How to write equations}
\label{chp::with_uncertainty}
\input{chapters/ch4}
\chapter{How to cite papers}
\label{chp::citations}
\input{chapters/ch5}
\chapter{Conclusion \& Future Work}
\label{chp::conclusions}
\input{chapters/ch6}
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{ieeetr}
\bibliography{refs.bib}
\end{document}