-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
executable file
·121 lines (98 loc) · 4.44 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
\documentclass[12pt]{ociamthesis} % default square logo
%\documentclass[12pt,beltcrest]{ociamthesis} % use old belt crest logo
%\documentclass[12pt,shieldcrest]{ociamthesis} % use older shield crest logo
%load any additional packages
\usepackage{amssymb}
\usepackage{natbib} % references in text to look like MNRAS/ApJ/A&A
\usepackage{hyperref} % references become hyperlinks to bibliography
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\usepackage{amsmath} % align enviroment
\usepackage{gensymb} % degree symbol in math enviroments
\usepackage{mhchem} % typeset chemistry symbols
\usepackage{ccaption} % for contcaption to continue figure onto multiple pages
\usepackage[flushleft, referable]{threeparttablex} % Adding notes under tables
\usepackage{multirow} % for multirow command
\usepackage{url}
\urlstyle{same}
\usepackage{pdflscape} % Landscape pages
\usepackage{geometry} % Altering margins size
\usepackage{placeins}
\usepackage{array} % For wrapping text in cell in tables
% \newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}} % centered wrapped text in tables
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}} % For wrapping text in tables, left justified
%input macros (i.e. write your own macros file called mymacros.tex
%and uncomment the next line)
%\include{mymacros}
\newcommand\ion[2]{\text{#1\,\textsc{\lowercase{#2}}}} % ionization states - from MNRAS class
\newcommand{\bracket}[1]{[#1]} % to be able to use [] in arguments
\newcommand\arcsec{\hbox{$^{\prime\prime}$}}
\newcommand\arcmin{\hbox{$^\prime$}}
\newcommand\farcm{\hbox{$.\mkern-4mu^\prime$}}
\newcommand\farcs{\hbox{$.\!\!^{\prime\prime}$}}
\newcommand\fd{\hbox{$.\!\!^{\reset@font\romn d}$}}
\newcommand\fh{\hbox{$.\!\!^{\reset@font\romn h}$}}
\newcommand\fm{\hbox{$.\!\!^{\reset@font\romn m}$}}
\newcommand\fs{\hbox{$.\!\!^{\reset@font\romn s}$}}
\newcommand\fdg{\hbox{$.\!\!^\circ$}}
\newcommand\degr{\hbox{$^\circ$}}
% \includeonly{introduction/introduction}
% \includeonly{chapter2/chapter2}
% \includeonly{chapter4/chapter4}
% \includeonly{chapter5/chapter5}
% \includeonly{abstract/abstract, acknowledgements/origionality, conclusions/conclusions, appendix/appendix2/appendix2}
\title{An Integral Field Spectroscopic\\[1ex] %your thesis title,
Study of Low-powered\\[1ex]
Radio Galaxies} %note \\[1ex] is a line break in the title
\author{Joshua Warren} %your name
\college{Mansfield College} %your college
%\renewcommand{\submittedtext}{change the default text here if needed}
\degree{Doctor of Philosophy} %the degree
\degreedate{Hilary Term 2018} %the degree date
%end the preamble and start the document
\begin{document}
\pagenumbering{gobble}
\maketitle % create a title page from the preamble info
%this baselineskip gives sufficient line spacing for an examiner to easily
%markup the thesis with comments
\baselineskip=18pt plus1pt
%set the number of sectioning levels that get number and appear in the contents
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\begin{romanpages} % start roman page numbering
% \include{acknowledgements/dedication} % include a dedication.tex file
\include{abstract/abstract} % include the abstract
\include{acknowledgements/origionality}
\include{acknowledgements/acknowledgements} % include an acknowledgements.tex file
\tableofcontents % generate and include a table of contents
\listoffigures % generate and include a list of figures
\end{romanpages} % end roman page numbering
\pagenumbering{arabic}
%now include the files of latex for each of the chapters etc
\include{introduction/introduction}
\include{chapter2/chapter2}
\include{chapter4/chapter4}
\include{chapter5/chapter5}
\include{conclusions/conclusions}
%next line adds the Bibliography to the contents page
\addcontentsline{toc}{chapter}{References}
%uncomment next line to change bibliography name to references
\renewcommand\bibname{References}
\bibliographystyle{mnras} % MNRAS bib style
\bibliography{refs} %use a bibtex bibliography file refs.bib
% \bibliographystyle{plain} %use the plain bibliography style
%now enable appendix numbering format and include any appendices
\appendix
% Appendix 1 has been moved into Chapter 2
\include{appendix/appendix2/appendix2}
% \newpage
% \vspace*{3cm}
% \begin{center}
% \emph{To the stars... \\ and who says we have to come back?}
% \end{center}
\end{document}