-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
178 lines (145 loc) · 4.97 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
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
170
171
172
173
174
175
176
177
178
\documentclass[12pt, letterpaper]{article}
%%%%%%%%%%% Packages %%%%%%%%%%%
\usepackage[utf8]{inputenc}
\usepackage{newtxtext} % requires XeLaTeX
\usepackage{amsmath, amsfonts, amssymb}
\usepackage{relsize}
\usepackage{exscale}
\numberwithin{equation}{section}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{setspace}
\usepackage{sectsty}
\usepackage{tocloft}
\usepackage{fancyhdr}
%%%%%%%%% Citation style %%%%%%%%%
\usepackage{natbib} % for author-year citations
% \usepackage[square,numbers]{natbib} % for numbered citations
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{notoccite}
\usepackage{indentfirst}
\usepackage{newtxtext}
\usepackage{tabularx, booktabs}
\usepackage{multirow}
\usepackage[author={Sunip M}]{pdfcomment}
\usepackage{xfrac}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\sectionfont{\Large}
\subsectionfont{\normalsize}
\subsubsectionfont{\normalsize}
\usepackage[rgb]{xcolor}
\setlength {\marginparwidth }{2cm}
\usepackage{todonotes}
\usepackage{verbatim}
\newenvironment{metaverbatim}{\verbatim}{\endverbatim}
%%%%%%%%%%%% Source Code Inclusion %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Uncomment the following to include source code with native markup
% \usepackage{lmodern}
% \usepackage{minted} % requires Pygments (pip install pygments), and also requires a valid Python Environment
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{rotating}
\usepackage{enumerate}
\usepackage{enumitem}
\usepackage{nicefrac}
\usepackage[margin=1in]{geometry}
\geometry{
letterpaper,
left=1.5in,
right=1.0in,
top=1.0in,
bottom=1.0in
}
\usepackage{pdflscape}
\usepackage{wrapfig}
\usepackage{afterpage}
\usepackage[scale=0.94]{tgbonum}
\usepackage[mode=text]{siunitx}
\usepackage{etoolbox}
\makeatletter
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\makeatother
\makeatletter
\DeclareTextCompositeCommand{\r}{OT1}{A}{%
\leavevmode\vbox{%
\offinterlineskip
\ialign{\hfil##\hfil\cr\char23\cr\noalign{\kern-1.15ex}A\cr}%
}%
}
\makeatother
\newcommand{\MONTH}{%
\ifcase\the\month
\or January% 1
\or February% 2
\or March% 3
\or April% 4
\or May% 5
\or June% 6
\or July% 7
\or August% 8
\or September% 9
\or October% 10
\or November% 11
\or December% 12
\fi}
%%%%%%%%%%%%%%%%%%% Fancy arrays %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{array, makecell}
\renewcommand\theadfont{\normalsize\bfseries}
\newcolumntype{C}{>{\raggedright\arraybackslash}X}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%% Hyperlink Formatting %%%%%%%%%%%%%%%%%%%%%%%%%
\hypersetup{
colorlinks,
linkcolor={red!70!black},
citecolor={blue!75!black},
urlcolor={blue!85!black}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%% Depth of ToC %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\setcounter{tocdepth}{5} % table of contents depth
\setcounter{secnumdepth}{5} % section numbering depth
\newcommand{\myparagraph}[1]{\paragraph{#1}\mbox{}\\} % chapter depth 4
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%% Figure and table numbering %%%%%%%%%%%%%%%%%%%
\renewcommand{\thefigure}{\arabic{section}.\arabic{figure}}
\renewcommand{\thetable}{\arabic{section}.\arabic{table}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%% Author Info %%%%%%%%%%
\newcommand{\thesistitle}{Dissertation Title}
\newcommand{\thesisauthor}{Author Name}
\newcommand{\thesisyear}{\the\year{}} % replace \the\year{} with the year of submission
\newcommand{\thesismonth}{\MONTH{}} % replace \MONTH{} with the month of submission
\newcommand{\thesissup}{Supervisor Name}
\newcommand{\thesisdept}{Physics and Applied Physics}
\newcommand{\thesisdegree}{Doctor of Philosophy}
\newcommand{\thesisdegreeprogram}{Physics Program} % leave empty if not applicable
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%% Custom Settings %%%%%%%%%%
% add custom settings here. Such as, a custom graphics path.
% \graphicspath{{./figures/}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\include{coverpage} % cover page (do not edit)
\include{copyright} % copyright page (do not edit)
\include{sigpage} % signature page (edit to add more committee members)
\include{abstitle} % abstract title page (do not edit)
\include{abs} % abstract
\include{ack} % acknowledgements (optional)
\input{toc} % table of contents (do not edit)
\include{lot} % list of tables (do not edit)
\include{lof} % list of figures (do not edit)
\include{1_intro} % introduction
\include{2_method} % methodology
\include{3_results} % results
\include{4_disc} % discussion
\include{5_conc} % conclusions
\input{ref} % references (do not edit)
\bibliography{bibfile} % bibliography file
\bibliographystyle{astroads}
%%%%%%%%%%%%%%%% Optional Appendix Section %%%%%%%%%%%%%%%%%%%
\appendix
\renewcommand{\thefigure}{\Alph{section}.\arabic{figure}}
\renewcommand{\thetable}{\Alph{section}.\arabic{table}}
\include{appendix}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}