-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathThesisMaster.tex
executable file
·54 lines (42 loc) · 1.92 KB
/
ThesisMaster.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
\documentclass[letterpaper,12pt]{report}
\usepackage[top=1in,right=1in,bottom=1in,left=1.5in,nohead,nofoot]{geometry}
% PACKAGES
%**********
\usepackage{amsmath} % AMS Math (http://www.ams.org/tex/amslatex.html)
\usepackage{amssymb} % AMS Symbols
\usepackage{amsthm} % AMS Theorems
\usepackage{tocloft} % Format the Table of Contents
\usepackage{float} % More float commands
\usepackage{sectsty} % Format section and chapter headings
\usepackage{graphicx} % Insert images in eps or pdf format
\usepackage{setspace} % Line-spacing
% Potentially useful packages:
% \usepackage{epsfig} % For EPS figures
% \usepackage{subfigure} % For side-by-side figures
% \usepackage{sidecap} % Put captions on the side of figures
% \usepackage{rotating} % Rotatiion of figures and tables
% \usepackage{multirow} % Column and row spanning in tables
% \usepackage{chapterbib} % Insert bibliograhpy with a simple include command
\input{Command_Mods} % Lots of special formatting to make the ToC adhere to MU requirements
\begin{document}
\doublespacing % Double line-spacing ( or specify something like \setspacing{1.8} )
\allsectionsfont{\singlespacing} % Only body text needs double spacing, titles can be single spaced
\setcounter{page}{1}
\pagenumbering{roman}
\input{TitlePage} % Input the Title Page (no page number, but counts as roman numeral 'i')
\input{Approval} % Input the Approval Page (no page number)
\input{Acknowledge} % Input the Acknowledgement Page (roman numeral page number 'ii')
\input{Contents} % Generate and input a Table of Contents and List of Figures/Tables/etc.(roman numeral page number 'iii')
\input{Abstract}
\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
\addtocontents{toc}{\protect \contentsline {chapter}{CHAPTER}{}}
\input{Introduction}
\input{Chapter_02}
\input{Chapter_03}
\input{Summary}
\input{Appendix}
\input{Bibliography}
\input{Vita}
\end{document}