-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.tex
190 lines (141 loc) · 3.7 KB
/
template.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
\documentclass[oneside]{book}
\include{preamble}
\begin{document}
% Title page
\pagestyle{fancy}
\pagenumbering{gobble} % don't show page number
\begin{titlepage}
\begin{center}
\begin{Large}
\vspace*{1.0in}
\textsc{\hl{Fill in title}}
\vspace{0.25in}
by
\vspace{0.25in}
\hl{Fill in author}
\vfill
A Dissertation\\
Submitted in Partial Fulfilment\\
of the Requirements for the Degree of\\
\hl{Fill in degree} %Doctor of Computational Science
\vspace{0.5in}
Middle Tennessee State University \\
\hl{Fill in date} %December 2021
\vspace{0.5in}
Dissertation Committee:\\
\hl{Fill in advisor}, advisor\\
\hl{Fill in committee}\\
\hl{Fill in committee}\\
\end{Large}
\end{center}
\end{titlepage}
\frontmatter % Roman numeral page numbers
\doublespacing
\setcounter{page}{2}
\chapter*{Dedication}
\begin{center}
\hl{Fill in text}
\end{center}
\clearpage
\chapter*{Acknowledgements}
\hl{Fill in text}
\clearpage
\chapter*{Abstract}
\epigraph{\hl{Fill in epigraph}}{\hl{Fill in author}}
\hl{Fill in text}
\chaptercloser
\pagestyle{plain}
\renewcommand{\contentsname}{Table of Contents}
\tableofcontents
\clearpage
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\clearpage
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\clearpage
%\chapter{List of Symbols} % UNCOMMENT IF NEEDED
\chapter{List of Abbreviations}
\begin{itemize}
\item[FIA - ] \hl{Fill in abbreviation}
\item[FIA - ] \hl{Fill in abbreviation}
\end{itemize}
%\chapter{List of Terms} % UNCOMMENT IF NEEDED
\mainmatter % Arabic page numbers
\chapter{Fill in section}
\fancypagestyle{plain}{%
\fancyhf{} % clear all header and footer fields
\fancyhead{} % clear all header fields
\fancyfoot{} % clear all footer fields
\fancyhead[RO]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
}
\pagestyle{fancy}
\label{chap:introduction}
\epigraph{\hl{Fill in epigraph}}{\hl{Fill in author}}
This document was typeset in \LaTeX\cite{goossens1994latex},
with citation management in \texttt{natbib}\cite{daly1999natural} or BibTeX\cite{patashnik2003bibtex}.
Within this Introduction,
\autoref{sec:some_description} describes this and that
\autoref{chap:results} contains figures.
\section{Fill in subsection}
\label{sec:some_description}
\subsection{Fill in subsubsection}
\hl{Fill in text}
\autoref{equation:classical RD} looks fancy!
\begin{equation}
\label{equation:classical RD}
\dfrac{\partial u}{\partial t} = \mathbf{D}\dfrac{\partial ^2 u}{\partial x^2} + \mathbf{f}(u),
\end{equation}
by which the density $u$ is governed across space $x$ and time $t$.
\subsection{Fill in subsubsection}
\subsubsection{Fill in subsubsubsection}
\subsubsection{Fill in subsubsubsection}
\chaptercloser
\chapter{Results}
\label{chap:results}
\label{chap:introduction}
\epigraph{\hl{Fill in epigraph}}{\hl{Fill in author}}
\hl{Fill in text}
\autoref{figure_label} shows an important color.
The effect is given further attention in \autoref{table_label}.
\begin{table}
\centering
\caption{\hl{Fill in caption}}
\bgroup
\def\arraystretch{1.5}
\begin{tabular}{r|c}
$\alpha$ & Slope \\
\hline
2.0 & 0.1 \\
1.9 & 0.2 \\
1.8 & 0.3 \\
\end{tabular}
\egroup
\label{table_label}
\end{table}
\begin{figure}
\centering
\caption{
\hl{Fill in caption}
}
\begin{subfigure}{1.0\textwidth}
\centering
\includegraphics[clip, trim = 0.5cm 0.5cm 0.5cm 0.5cm, width = 0.1\textwidth]{image.png}
\end{subfigure}
\label{figure_label}
\end{figure}
\clearpage
\interlinepenalty = 10000 % Prevent line breaks within bibliography entries
\bibliographystyle{ieeetr}
\bibliography{mybib}
\addcontentsline{toc}{chapter}{Bibliography}
\clearpage
\addcontentsline{toc}{chapter}{Appendix}
\begin{appendix}
\chapter*{Appendix}
\hl{Fill in text.}
\vfill
\end{appendix}
\end{document}