-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
92 lines (74 loc) · 3.71 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
\documentclass[12pt]{ociamthesis} % default square logo; [12pt,beltcrest] old belt crest logo; [12pt,shieldcrest] older shield crest logo
%load any additional packages
\usepackage[margin=1.0in,includefoot,heightrounded]{geometry}
\usepackage{amssymb,booktabs,gensymb,url,textcomp,amsmath,array}
\usepackage[nohints]{minitoc}
\setcounter{minitocdepth}{2}
\usepackage{float}
\usepackage[font=small,labelfont=bf,belowskip=-1pt,aboveskip=8pt]{caption} %setup globally
\usepackage{subcaption} %setup locally works
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{rotating}
\usepackage{tablefootnote}
\usepackage[utf8x]{inputenc}
\usepackage[table,xcdraw]{xcolor} %colorful words in tables
\usepackage[round]{natbib} %note that when you use this package, \bibliographystyle{} needs the corresponding styles, see more at https://www.overleaf.com/learn/latex/Natbib_bibliography_styles; learn more about natbib at https://journals.aas.org/natbib/
\usepackage{lscape,longtable}
\usepackage[page,toc,titletoc,title]{appendix}
\usepackage[normalem]{ulem}
\useunder{\uline}{\ul}{}
%input macros (i.e. write your own macros file called mymacros.tex
%and uncomment the next line)
%\include{mymacros}
\title{GLOBAL PALEOMAGNETIC DATA ANALYSIS:\\[1ex] %your thesis title,
IMPROVED METHODS OF RECONSTRUCTING PLATE MOTIONS USING PALEOMAGNETIC DATA} %note \\[1ex] is a line break in the title
\college{Kent State University} %your college
\degreen{Master of Science} %the degree
\renewcommand{\submittedtext}{A thesis submitted\\ To Kent State University in partial\\ Fulfillment of the requirements for the\\ Degree of Master of Science} %comment this line to use the default submittedtext defined in cls file
\author{Chenjian Fu} %your name
\degreedate{DECEMBER 2021\\} %the degree date
\providecommand\phantomsection{}
\renewcommand{\contentsname}{Table of Contents}
%end the preamble and start the document
\begin{document}
%%%%% CHOOSE YOUR LINE SPACING HERE
%this baselineskip gives double line spacing for an examiner to easily
%markup the thesis with comments; about 1.5-spaced: 18pt plus2pt minus1pt
\baselineskip=22pt plus2pt
%set the number of sectioning levels that get number and appear in the contents
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
%\include{dedication} % include a dedication.tex file
\begin{romanpages} % start roman page numbering
\include{abstract} % include the abstract
\maketitle % create a title page from the preamble info
\include{signature}
\addcontentsline{toc}{chapter}{\contentsname}
\tableofcontents % generate and include a table of contents
\cleardoublepage\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures % generate and include a list of figures
\cleardoublepage\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\cleardoublepage\addcontentsline{toc}{chapter}{Acknowlegements}
\include{acknowlegements} % include an acknowledgements.tex file
\end{romanpages} % end roman page numbering
%now include the files of latex for each of the chapters etc
\include{chapter1}
\include{chapter2}
\include{chapter3}
%\include{chapter4}
\include{conclusions}
%next line adds the Bibliography to the contents page
\addcontentsline{toc}{chapter}{Bibliography}
%uncomment next line to change bibliography name to references
%\renewcommand{\bibname}{References}
\bibliography{../../doc_template_config/tex/refs} %use a bibtex bibliography file refs.bib
\bibliographystyle{plainnat} %use the plain bibliography style if we don't use natbib
%now enable appendix numbering format and include any appendices
\begin{appendices}
\appendix
\include{appendix1}
\include{appendix2}
\end{appendices}
\end{document}