-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.tex
More file actions
47 lines (35 loc) · 1020 Bytes
/
main.tex
File metadata and controls
47 lines (35 loc) · 1020 Bytes
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
\documentclass{article}
\usepackage{amsfonts, amsmath, amsthm}
\usepackage[letterpaper, total={6in, 9in}]{geometry}
\usepackage[noend]{algorithmic}
\usepackage[vlined,ruled,linesnumbered]{algorithm2e}
%% preamble packages and symbols
\input{preamble_packages}
\input{preamble_symbols}
\usepackage[pagebackref=true,breaklinks=true,letterpaper=true,colorlinks,bookmarks=false]{hyperref}
%% it is often convenient to define shortcuts for some important notations
\input{shortcuts.tex}
\title{Sample Report}
\author{Your Name}
\begin{document}
\maketitle
%% Abstract
\input{sections/abstract.tex}
%% Main sections
\input{sections/introduction.tex}
\input{sections/related-work.tex}
\input{sections/formulation.tex}
\input{sections/method.tex}
\input{sections/experiments.tex}
\input{sections/conclusion.tex}
\clearpage
%% Appendix
\begin{center}
{\Large\bf Appendix}
\end{center}
\appendix
\input{sections/app-proof-convergence.tex}
%% References
\bibliographystyle{plain}
\bibliography{refs}
\end{document}