-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.tex
113 lines (88 loc) · 2.53 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
% This is the Oregon State University LaTeX template. To the best of my
% knowledge, most of the work was done by those acknowledged in beavtex.cls.
%%
%% Preamble
%%
% \documentclass{<something>} must begin each LaTeX document
\documentclass[double,11pt]{beavtex}
$for(header-includes)$
$header-includes$
$endfor$
% Added by ZNK -- indent first paragraph after section.
\usepackage{indentfirst}
% Added by CII
\usepackage{graphicx,latexsym}
\usepackage{amsmath}
\usepackage{amssymb,amsthm}
\usepackage{longtable,booktabs,setspace}
\usepackage[hyphens]{url}
\usepackage[colorlinks = true,
urlcolor = blue,
linkcolor = black,
citecolor = black,
anchorcolor = black]{hyperref}
\usepackage{lmodern}
\usepackage{float}
\floatplacement{figure}{H}
% End of CII addition
\usepackage{rotating} % Package added to allow the rotation of figures and chart
% on a page, {sidewaysfigure} command
\usepackage{tablefootnote} % Packaged added to allow footnotes in the tabular
% environment, use \tablefootnote command
% This has to do with a default pandoc thing
% http://tex.stackexchange.com/a/258486/77699
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
% Added by CII (Thanks, Hadley!)
% Use ref for internal links
\renewcommand{\hyperref}[2][???]{\autoref{#1}}
\def\chapterautorefname{Chapter}
\def\sectionautorefname{Section}
\def\subsectionautorefname{Subsection}
% End of CII addition
% Added by CII
\usepackage{caption}
\captionsetup{width=5in}
% End of CII addition
\title{$title$} % {An Analysis of Something}
\author{$author$} % {Joseph A. Student}
\degree{$degree$} % {Master of Science}
\doctype{$doctype$}
\submitdate{$date$} % {January 1, 2013}
\commencementyear{$commencement$} % {2013}
\department{$department$} % {Nuclear Engineering and Radiation Health Physics}
$if(twodepartment)$
\twodepartment{$twodepartment$}
$endif$
\depttype{$depttype$} % {School}
$if(twodepttype)$
\twodepttype{$twodepttype$}
$endif$
\depthead{$depthead$} % {Director}
$if(twodepthead)$
\twodepthead{$twodepthead$}
$endif$
\major{$major$} % {Radiation Health Physics}
$if(twomajor)$
\twomajor{$twomajor$}
$endif$
\advisor{$advisor$} % {Jane R. Professor}
$if(coadvisor)$
\coadvisor{$coadvisor$}
$endif$
\abstract{$abstract$}
\acknowledgements{$acknowledgements$}
$if(contributors)$
\contributors{$contributors$}
$endif$
$if(dedication)$
\dedication{$dedication$}
$endif$
$if(preface)$
\preface{$preface$}
$endif$
\begin{document}
\maketitle
\mainmatter
$body$
\end{document}