-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
123 lines (93 loc) · 4.22 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
% This one will format for two-sided binding (ie left and right pages have mirror margins; blank pages inserted where needed):
\documentclass[a4paper,twoside]{ociamthesis}
% This one will format for one-sided binding (ie left margin > right margin; no extra blank pages):
%\documentclass[a4paper]{ociamthesis}
% This one will format for PDF output (ie equal margins, no extra blank pages):
%\documentclass[a4paper,nobind]{ociamthesis}
\include{preamble}
\usepackage{breakcites}
%\ShortHeadings{Automating Inference, Learning, and Design}{Tom Rainforth}
%\firstpageno{1}
\begin{document}
%%%%% CHOOSE YOUR LINE SPACING HERE
% This is the official option. Use it for your submission copy and library copy:
%\setlength{\textbaselineskip}{22pt plus2pt}
\setlength{\textbaselineskip}{21pt plus2pt}
% This is closer spacing (about 1.5-spaced) that you might prefer for your personal copies:
%\setlength{\textbaselineskip}{18pt plus2pt minus1pt}
% You can set the spacing here for the roman-numbered pages (acknowledgements, table of contents, etc.)
\setlength{\frontmatterbaselineskip}{18pt plus1pt minus1pt}
% Leave this line alone; it gets things started for the real document.
\setlength{\baselineskip}{\textbaselineskip}
%\renewcommand{\contentsname}{\hfill Contents \hfill \hfillline}
%%%%% CHOOSE YOUR SECTION NUMBERING DEPTH HERE
% You have two choices. First, how far down are sections numbered? (Below that, they're named but
% don't get numbers.) Second, what level of section appears in the table of contents? These don't have
% to match: you can have numbered sections that don't show up in the ToC, or unnumbered sections that
% do. Throughout, 0 = chapter; 1 = section; 2 = subsection; 3 = subsubsection, 4 = paragraph...
% The level that gets a number:
\setcounter{secnumdepth}{3}
% The level that shows up in the ToC:
\setcounter{tocdepth}{1}
% JEM: Pages are roman numbered from here, though page numbers are invisible until ToC. This is in
% keeping with most typesetting conventions.
\begin{romanpages}
% Title page is created here
\maketitle
%%%%% DEDICATION -- If you'd like one, un-comment the following.
%\begin{dedication}
%This thesis is dedicated to\\
%someone\\
%for some special reason\\
%\end{dedication}
%%%%% ABSTRACT -- Nothing to do here except comment out if you don't want it.
\begin{abstract}
\input{abstract}
\end{abstract}
%%%%% ACKNOWLEDGEMENTS -- Nothing to do here except comment out if you don't want it.
\begin{acknowledgements}
\input{thanks}
\end{acknowledgements}
%%%%% MINI TABLES
% This lays the groundwork for per-chapter, mini tables of contents. Comment the following line
% (and remove \minitoc from the chapter files) if you don't want this. Un-comment either of the
% next two lines if you want a per-chapter list of figures or tables.
%\dominitoc % include a mini table of contents
%\dominilof % include a mini list of figures
%\dominilot % include a mini list of tables
% This aligns the bottom of the text of each page. It generally makes things look better.
\flushbottom
% This is where the whole-document ToC appears:
\tableofcontents
%\listoffigures
%\mtcaddchapter
% \mtcaddchapter is needed when adding a non-chapter (but chapter-like) entity to avoid confusing minitoc
% Uncomment to generate a list of tables:
%\listoftables
% \mtcaddchapter
%%%%% LIST OF ABBREVIATIONS
% This example includes a list of abbreviations. Look at text/abbreviations.tex to see how that file is
% formatted. The template can handle any kind of list though, so this might be a good place for a
% glossary, etc.
%\include{misc/abbreviations}
% The Roman pages, like the Roman Empire, must come to its inevitable close.
\end{romanpages}
\flushbottom
\setlength{\abovedisplayskip}{6.5pt}
\setlength{\belowdisplayskip}{6.5pt}
\setlength{\abovedisplayshortskip}{6.5pt}
\setlength{\belowdisplayshortskip}{6.5pt}
\renewcommand{\chapterheadstartvskip}{\vspace*{-80pt}}
\setlength{\belowcaptionskip}{-7pt}
\input{introduction}
\input{literature}
\input{faithful_inverses}
\input{posterior_server}
\input{stat_verification}
\input{conclusions}
%\startappendices
%\input{appendices/appendices}
\clearpage
\renewcommand{\chapterheadstartvskip}{\vspace*{-30pt}}
\bibliography{dphil}
\end{document}