-
Notifications
You must be signed in to change notification settings - Fork 6
/
sample.tex
105 lines (83 loc) · 2.35 KB
/
sample.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
%
% Sample CWRU Dissertation
% Copyright 2013, Gary Doran ([email protected])
% Distributed under the terms of the GNU Lesser General Public License
%
\documentclass[]{cwru} % Use `singlespaced` option to make the mainmatter text single-spaced
% Use 'proposal option if this is a proposal'
\usepackage{lipsum}
\fancyhead[LO,RE]{} % Remove section names from header
% If you're using the `glossaries` package acronyms (see below)
%\renewcommand*{\acronymname}{List of Acronyms}
\title{A Long Document That Will Be Read By At Most Ten People}
\author{Ima Student}
\date{May, 2014} % Graduate Date
\doctype{dissertation} % dissertation/thesis
\degree{Doctor of Philosophy}
\department{Positive Thinking}
\defensedate{April 27, 2014}
% By default, commitee chair is advisor,
% but you can override it
%\committeechair{Dr.\ Some Otherperson}
\begin{document}
\advisor{Dr.\ Givesme Worktodo}
% Add up to 5 committee members
\committee{Dr. Clive Buttertable}
\committee{Dr. Bentley Hubspith}
\committee{Dr. Malcolm-Jamal Warner}
\committee{Dr. Cartright Dimaggio}
% The organization of the dissertation must follow the order below:
%
% Title page
% Committee Approval Sheet
% Copyright page (only if copyrighting)
% Dedication page (optional)
% Table of Contents
% List of Tables
% List of Figures
% Preface (optional)
% Acknowledgements (optional)
% List of Abbreviations (optional)
% Glossary (optional)
% Abstract
% --TEXT--
% Appendix
% Bibliography
\maketitle
\makeapprovalsheet
\frontmatter
\tableofcontents
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\begin{acknowledgments}
\lipsum[1-3]
\end{acknowledgments}
% If you're using `glossaries` package
%\cleardoublepage
%\phantomsection
%\addcontentsline{toc}{chapter}{List of Acronyms}
%\printglossary[type=\acronymtype]
%\cleardoublepage
%\phantomsection
%\addcontentsline{toc}{chapter}{Glossary}
%\printglossary
\begin{abstract}
% "Dissertation abstracts must not exceed 350 words, thesis abstracts 150."
\lipsum[1-10]
\end{abstract}
\mainmatter
\chapter{Introduction}
\lipsum[1-10] \cite{lipsum}
\backmatter
\appendix
% For your references
%TODO, add a sample Bibliography entry to ensure that this works
\bibliographystyle{apalike}
\bibliography{sample}
\end{document}