-
Notifications
You must be signed in to change notification settings - Fork 17
/
main.tex
136 lines (107 loc) · 4.22 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
124
125
126
127
128
129
130
131
132
133
134
135
136
% University of Michigan Dissertation LaTeX Template for 2023
% Created by John Meluso and Shreyas Kousik
% 9 Jul 2020
% Use the University of Michigan thesis class.
\documentclass[thesis]{thesis-umich}
\input{packages}
%--- Set the font styles -----
% As of this writing, Rackham does not have strict font requirements, but they
% suggest "standard fonts" such as Times, Arial, or Times New Roman.
% In practice, they allow the default LaTeX font (Computer Modern).
% The fonts available to you depend on the typesetting engine you use, e.g.
% pdflatex (the overleaf default), xelatex, or lualatex.
% Set the font to whatever you like, as long as it's compatible with the tex
% engine you're using.
% More information from Overleaf on font selection with:
% - pdflatex: https://www.overleaf.com/learn/latex/Font_typefaces
% - xelatex: https://www.overleaf.com/learn/latex/XeLaTeX
% See examples below depending on your engine and uncomment the usepackage
% commands and any subsequent commands as needed.
%-------------------------------------------------------------------------------
%--- pdflatex -----
%\usepackage{times}
%\usepackage{newtxtext}
%\usepackage{newtxmath}
%-------------------------------------------------------------------------------
%--- xelatex / lualatex -----
%\usepackage{fontspec}
%\setromanfont{Times New Roman}
%\setsansfont{Arial}
%\setmonofont{Courier New}
%-------------------------------------------------------------------------------
% If you are using the alpha bibliography style, keep these next three lines in your preamble, so that the references are left-aligned; or, you can comment it out and see what happens
\makeatletter
\renewcommand{\@biblabel}[1]{[#1]\hfill}
\makeatother
% Title of the thesis
\title{Your Dissertation Title}
% Author name
\author{Your M. Name}
% Specify the author's legal name, if different from the preferred name.
%\legalname{Your Legal Name}
% Department
\department{Field of Degree (e.g. ``Psychology'')}
% Year of completion
\year=2020
% Author email
\email{youremail@umich.edu}
% Author ORCID iD
\orcid{0000-0000-0000-0000}
% Frontispiece
\frontispiece{\includegraphics[width=4in]{front_materials/frontispiece.png}}
% Default style for front pages
\frontpagestyle{7} % 7 is preferred by Rackham, but should be set individually for each front page
% Dedication (the input [7] determines the style -- 7 is Rackham's preferred style)
% \hidededication{%
\dedication[7]{\input{front_materials/dedication}}
% Acknowledgments (the input [7] determines the style -- 7 is Rackham's preferred style)
\acknowledgments[7]{\input{front_materials/acknowledgments}}
% Preface
\preface[7]{\input{front_materials/preface}}
% Committee
\committee{ %
Professor First Name, Chair \\
Professor Second Name in Alphabetical Order \\
Professor Third Name in Alphabetical Order \\
Professor Fourth Name in Alphabetical Order
}
% Chair must be entered separately for formatting reasons.
\chair{Professor First Name}
%\cochair{Co-chair One \& Co-chair Two}
% Definition of any acronyms used.
% To add an acronym, add an \acro{}{} command on a new line within the \acronyms{} command. For \acro, field 1 is the acronym and field 2 is the corresponding expression. For example: \acro{TLA}{Three Letter Acronym}.
\acronyms{
\acro{TLA}{Three Letter Acronym}
\acro{SOA}{Some Other Acronym}
}
% Definition of any symbols used.
% To add an symbol, add an \item command with the symbol inside a [] bracket followed by explanations
\symbols{
\item [$\alpha$] The greek letter alpha.
\item [$\Gamma$] \blindtext
}
% Commands to hide or show lists of figures, tables, etc.
% To hide a list, change the word "show" in the command to "hide".
\showlistoftables
\showlistofprograms
\showlistofappendices
\showlistofacronyms
\hidelistofsymbols
% Some abstract text
\abstract{
\input{front_materials/abstract}
}
%\hideabstractpagenumber
%% DOCUMENT AREA
\begin{document}
\input{chapters/example_chapter_01}
% Place your additional chapters here using the \input{} command
\input{chapters/example_chapter_99}
% Appendices
\appendix
\input{appendices/example_appendix_01}
\input{appendices/example_appendix_02}
\bibliographystyle{plain}
% Give this command the relative path to the .bib file.
\bibliography{references.bib}
\end{document}