-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfz.tex
92 lines (78 loc) · 1.95 KB
/
fz.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
\documentclass[a4paper, 12pt, twoside]{article}
\setlength{\columnsep}{0.8cm}
\usepackage{xeCJK}
\setsansfont{Consolas}
\setmonofont{Consolas}
%\setmainfont{Consolas}
\setCJKmainfont{SimHei}
\setCJKsansfont{SimHei}
\setCJKmonofont{SimHei}
% \usepackage{textcomp}
\usepackage{xcolor}
\usepackage{listings}
\lstset{
language=C++,
breaklines=true,
tabsize=4,
basicstyle=\sf\footnotesize,
numberstyle=\sf\footnotesize,
commentstyle=\sf\footnotesize,
numbers=left,
frame=leftline,
escapeinside=``,
extendedchars=false,
showstringspaces=false,
keywordstyle={\bfseries\color{blue}},
commentstyle=\color[RGB]{40, 147, 40},
stringstyle=\color[RGB]{163, 21, 21},
upquote=true
}
\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=1.2cm,bottom=1.8cm,headsep=0.1cm,footnotesep=0.5cm}
\usepackage{courier}
\usepackage[
CJKbookmarks=true,
colorlinks,
linkcolor=black,
anchorcolor=black,
citecolor=black
]{hyperref}
\AtBeginDvi{\special{pdf:tounicode UTF8-UCS2}}
\usepackage{fancyhdr}
\usepackage{sectsty}
\sectionfont{\large}
\subsectionfont{\large}
\subsubsectionfont{\large}
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{indentfirst}
\setlength{\parindent}{0em}
\usepackage{graphicx}
\begin{document}
\input settings.tex
\input title.tex
\clearpage
此页为双面打印之留白页\\
打印需注意:选择双面打印,并缩放到可打印区域!
\clearpage
\setcounter{page}{1}
\pagenumbering{Roman}
\tableofcontents\cleardoublepage
\setcounter{page}{1}
\pagenumbering{arabic}
\input ./模板/1_设置.tex
\input ./模板/2_STL.tex
\input ./模板/3_基本算法.tex
\input ./模板/4_数据结构.tex
\input ./模板/5_字符串.tex
\input ./模板/6_动态规划.tex
\input ./模板/7_数论.tex
\input ./模板/8_图论.tex
\input ./模板/9_数学.tex
\input ./模板/10_博弈.tex
\input ./模板/11_计算几何.tex
\input ./模板/12_其他.tex
\input ./模板/13_一些题目.tex
\clearpage
\input ./模板/现场赛宝典.tex
\end{document}