-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
75 lines (55 loc) · 1.19 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
% 前言
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[margin = 1in]{geometry}
\usepackage[english]{babel}
\usepackage{fancyhdr}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
% \usepackage{natbib}
\usepackage{graphicx}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
}
\pagestyle{fancy}
\fancyhf{}
\lhead{}
\rhead{}
\lfoot{}
\rfoot{}
\cfoot{\thepage}
\newtheorem{problem}{Problem}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{remark}{Remark}[section]
\newcommand{\R}{\mathbb R}
\newcommand{\Z}{\mathbb Z}
\newcommand{\C}{\mathbb C}
\newcommand{\Q}{\mathbb Q}
\newcommand{\st}{\operatorname{s.t. }}
% \includeonly{}
\begin{document}
\title{enter title here}
\author{enter name here}
\date{\today}
\maketitle
\begin{abstract}
what's this about
contributions
references
\end{abstract}
\tableofcontents
% \include{chapter1}
% \include{chapter2}
\section{enter first section here}
something something.
% \bibliographystyle{plain}
% \bibliography{references}
% \bibliography{}
\end{document}