-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMain.tex
executable file
·55 lines (43 loc) · 1.98 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
\documentclass{maine-thesis} % Default options 12pt and final copy
% Include necessary packages here
% \usepackage{...}
% Replace contents of {...} with your own information.
\title{...} % Title of thesis
\author{...} % Author's name: First Middle Last
\degreesheld{...} % Previously earned degree(s), institution(s) and year(s).
\degree{...} % Degree to be granted
\program{...} % Degree granting department or program
\submitdate{...} % Month and year of graduation (do not separate with a comma)
\principaladvisor[...]{...} % Advisor's [short title and name]{name, long title}
% If you have more than one advisor then you'll should delete the first argument ("[...]") above and uncomment the following commands
%\secondadvisor{...}
%\principalshort{...} % Shortened advisor name for abstract. See guidelines for example.
% Include all committee members names and titles
\firstreader{...}
\secondreader{...}
% If necessary (i.e. for a doctorate), include extra committee members. Else, comment out or delete any that are unnecessary
\thirdreader{...}
\fourthreader{...}
\fifthreader{...}
% If the thesis has MORE than one appendix, leave the following command in. Else, comment it out.
\multipleappendicestrue
% Begin the document.
\begin{document}
\preliminary
\titlepage
\include{Front}
% Main text of the thesis. Use of the `\input' command will make later editing much easier.
\include{Ch1} % Chapter 1
\include{Ch2} % Chapter 2
\include{Ch3} % Chapter 3, etc.
% Bibliography files are included here. Separate with a comma if more than one
\bibfiles{..., ...}
\bibliographystyle{...} % Appropriate bibliography style
% Appropriate bibliography title, default is REFERENCES, Uncomment to change it.
%\renewcommand{\bibname}{...}
\references % Inserts and formats the reference section.
\appendix % Include this before any appendices.
\include{AppA} % First appendix.
\include{AppB} % Second appendix, etc.
\include{Biography}
\end{document}