-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.tex
More file actions
67 lines (50 loc) · 1.83 KB
/
main.tex
File metadata and controls
67 lines (50 loc) · 1.83 KB
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
% main.tex
% A LaTeX thesis and dissertation template for Binghamton University.
% Copyright (C) 2024 Matthew Cole
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <https://www.gnu.org/licenses/>.
% The maintainer of this software is Matthew Cole <10990627+colematt@users.noreply.github.com>.
% The canonical version of this software is located at <https://github.com/colematt/bingthesis>
\documentclass[12pt,oneside]{book}
\usepackage{bingthesis}
\usepackage{graphicx}
\graphicspath{{./figures/}}
\usepackage{blindtext}
\addbibresource{bibliography.bib}
\title{Thesis or Dissertation Sample for Candidates of the Graduate School of Binghamton University}
\author{Baxter T. Bearcat}
\date{\today}
\begin{document}
\frontmatter
\include{pages/title}
\include{pages/copyright}
\include{pages/committee}
\include{pages/abstract}
\include{pages/dedication}
\include{pages/acknowledgement}
\tableofcontents
\listoftables
\listoffigures
\mainmatter
\begin{doublespacing}
\input{chapters/introduction}
\input{chapters/chapter}
\input{chapters/blindchapter}
\end{doublespacing}
% Uncomment this line to add appendices
\appendix
\include{chapters/appendix}
\backmatter
% Uncomment this line to add endnotes section
\include{pages/notes}
\raggedright
\printbibliography[heading=bibintoc]
\end{document}