-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
119 lines (93 loc) · 2.26 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
\input{Layout.tex}
\input{Macros.tex}
%%% environments
\newtheorem{theorem}{Theorem}[section]
\newtheorem{proposition}{Proposition}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{remark}{Remark}[section]
%%% use lowercase letters for subcaption labeling
\captionsetup[subfigure]{labelfont=rm}
\begin{document}
\numberwithin{figure}{chapter}
\numberwithin{table}{chapter}
\numberwithin{equation}{chapter}
\numberwithin{section}{chapter}
\frontmatter
\pagestyle{prelim}
% Redefine plain page style so that the first pages of chapters
% have desired page style.
%
\fancypagestyle{plain}{%
\fancyhf{}
\cfoot{\thepage}
}%
\input{TitlePage.tex}
\newpage
%%% (optional) copyright page <== this page is not numbered!
\thispagestyle{empty}
\begin{titlepage}
\vspace*{50em}
\begin{center}
\copyright \ Shiheng Duan, 2022. All rights reserved.
\end{center}
\end{titlepage}
\newpage
\stepcounter{page}
%%% (optional) dedication page
%\thispagestyle{plain}
%\vspace*{20em}
%\begin{center}
% To...
%\end{center}
%\newpage
% Begin Double Spacing
%
\tableofcontents
\doublespacing
%
\newpage
\input{Abstract.tex}
\newpage
\section*{Acknowledgments}
\input{Acknowledgments.tex}
\mainmatter
\pagestyle{maintext}
% Redefine plain page style so that the first pages of
% chapters have desired page style.
%
\fancypagestyle{plain}{%
\renewcommand{\headrulewidth}{0.pt}
\fancyhf{}
% \lhead{Chapter \thechapter}
\cfoot{\thepage}%%%
}%
\chapter{Introduction}
\label{ch:IntroductionLabel}
\input{Introduction.tex}
\chapter[%
Whatever you call it in the contents
]{%
This is really the long title.
}%
\label{ch:streamflow}
\input{chapter2.tex}
\chapter[%
title in the contents
]{%
Full title goes here.
}%
\label{ch:snowpack}
\input{chapter3.tex}
\chapter[%
this can be short title
]{%
This is the full title.
}%
\label{ch:snowpack}
\input{chapter4.tex}
\backmatter
% Sets bio to SIAM stype format
% \bibliographystyle{siam}
\bibliographystyle{refstyle}
\bibliography{ref}
\end{document}