-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
62 lines (53 loc) · 1.64 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
% -*- Mode:TeX -*-
%% The documentclass options along with the pagestyle can be used to generate
%% a technical report, a draft copy, or a regular thesis. You may need to
%% re-specify the pagestyle after you \include cover.tex. For more
%% information, see the first few lines of mitthesis.cls.
%\documentclass[12pt,vi,twoside]{mitthesis}
%%
%% If you want your thesis copyright to you instead of MIT, use the
%% ``vi'' option, as above.
%%
%\documentclass[12pt,twoside,leftblank]{mitthesis}
%%
%% If you want blank pages before new chapters to be labelled ``This
%% Page Intentionally Left Blank'', use the ``leftblank'' option, as
%% above.
\documentclass[12pt,twoside]{mitthesis}
\usepackage{lgrind}
\pagestyle{plain}
%% in case I include .eps versions of all figures for those w/o pdftex
\usepackage{ifpdf}
\ifpdf
\usepackage[pdftex]{graphicx}
\else
\usepackage{graphicx}
\fi
\usepackage{amsmath,amssymb,amsfonts} % easily align arrays of equations
\usepackage{hyperref} % hyperlinks
\usepackage{subfig} % multi-part figures
\usepackage{pdfpages} % makes it easy to insert all those nsigmapi fits
\usepackage{multirow}
\usepackage{calrsfs} % fancier integrated luminosity script
% Feynman diagrams
\usepackage{feynmp}
\DeclareGraphicsRule{*}{mps}{*}{}
\begin{document}
\include{cover}
\pagestyle{plain}
\include{contents}
\begin{fmffile}{feynman-diagrams}
\include{ch1-theory}
\include{ch2-experiment}
\include{ch3-reconstruction}
\include{ch4-analysis}
\include{ch5-results}
\end{fmffile}
% \appendix
% \include{appendices/appa}
% \include{appendices/appb}
\begin{singlespace}
\bibliography{main}
\bibliographystyle{plain}
\end{singlespace}
\end{document}