-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
123 lines (86 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
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
123
\documentclass[11pt]{book}
\usepackage[left=1.0in,right=1.0in,top=1in,bottom=1in]{geometry}
\usepackage[font=footnotesize,labelfont=bf]{caption}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{epigraph}
\usepackage{fancyhdr}
\usepackage{booktabs}
\usepackage{url}
\usepackage{wrapfig}
\usepackage[font=small,labelfont=bf, size=footnotesize]{caption}
\usepackage[export]{adjustbox}
\usepackage[superscript]{cite}
\usepackage{setspace}
\usepackage{ragged2e}
\bibliographystyle{plain}
\pagestyle{fancy}
\fancyhf{}
\cfoot{Page \thepage \hspace{0.01in} of \pageref{LastPage}}
\cfoot{\thepage}
\graphicspath{ {figs/} }
\author{Your Name}
\title{Dissertation Title}
\rhead{Your Name Header}
\lhead{Dissertation Title Header}
\begin{document}
%\maketitle
\frontmatter
\pagenumbering{gobble}
\thispagestyle{empty}
\center
\vspace*{1in}
\huge{Your Dissertation Title} \\
\vspace{1in}
\Large{Your Full Name} \\
\vspace{2in}
\normalsize
A DISSERTATION \\
\vspace{0.5in}
Presented to \\
The Department of Biomedical Engineering \\
Oregon Health \& Science University \\
School of Medicine \\
\vspace{0.25in}
In partial fulfillment of\\
the requirements for the degree of \\
\vspace{0.25in}
Doctor of Philosophy \\
\vspace{\fill}
August, 2020
\newpage
\thispagestyle{empty}
\Large{Certificate of Approval}
\normalsize
\justify
\newpage
% Dedication
\vspace*{\fill}
To someone important
\vspace*{\fill}
\pagenumbering{roman}
\tableofcontents
\listoffigures
\listoftables
\doublespacing
\chapter*{Acknowledgements}
\input{chapters/acknowledgments}
\chapter*{Abstract}
\input{chapters/abstract}
\mainmatter
\chapter{Introduction}
\input{chapters/introduction}
\chapter{Chapter Two Title}
\input{chapters/chapter02}
\chapter{Chapter Three Title}
\input{chapters/chapter03}
\chapter{Chapter Four Title}
\input{chapters/chapter04}
\chapter{Conclusion}
\input{chapters/conclusion}
\singlespacing
\bibliography{bib}
\end{document}