-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathStyle.tex
executable file
·66 lines (46 loc) · 1.19 KB
/
Style.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
\documentclass[a4paper]{article}
\usepackage{ctex}
\usepackage{microtype, shorttoc}
\usepackage{geometry}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
}
%% 列举
\newenvironment{tightenum}{
\begin{enumerate}
\setlength{\itemindent}{2\ccwd}
\setlength{\itemsep}{0cm}
\setlength{\parskip}{0cm}
}{
\end{enumerate}
}
%% 定理、推论等
\usepackage{amsmath,amsfonts,amssymb,amsthm,epsfig,epstopdf,titling,url,array}
\theoremstyle{plain}
\newtheorem{thm}{定理}[section]
\newtheorem{lem}[thm]{引理}
\newtheorem{prop}[thm]{Proposition}
\newtheorem*{cor}{推论}
\theoremstyle{definition}
\newtheorem{defn}{定义}[section]
\newtheorem{conj}{Conjecture}[section]
\newtheorem{exmp}{例}[section]
\newtheorem{exerc}{练习}[section]
\theoremstyle{remark}
\newtheorem*{rem}{注}
\newtheorem*{note}{注记}
\newtheorem{notation}{符号约定}
%%证明树
\usepackage{bussproofs}
\usepackage{proof}
%%图表
\usepackage[all,cmtip]{xy}
%插入代码设置
\usepackage{listings}
\usepackage{xcolor} %代码高亮
%分栏
\usepackage{multicol}