-
Notifications
You must be signed in to change notification settings - Fork 1
/
notebook_cpp.tex
97 lines (85 loc) · 2.28 KB
/
notebook_cpp.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
\documentclass[10pt]{article}
\usepackage[left=0.4in,right=0.4in,top=0.7in,bottom=0.4in]{geometry}
\usepackage{hyperref}
\usepackage{fancyhdr}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{tocloft}
\usepackage{pdflscape}
\usepackage{multicol}
\usepackage{graphicx}
\renewcommand*{\ttdefault}{pcr}
\renewcommand\cftsecfont{\fontsize{8}{9}\bfseries}
\renewcommand\cftsecpagefont{\fontsize{8}{9}\mdseries}
\renewcommand\cftsubsecfont{\fontsize{5}{6}\mdseries}
\renewcommand\cftsubsecpagefont{\fontsize{5}{6}\mdseries}
\renewcommand\cftsecafterpnum{\vspace{-1ex}}
\renewcommand\cftsubsecafterpnum{\vspace{-1ex}}
\lstdefinestyle{shared}{
belowcaptionskip=1\baselineskip,
breaklines=true,
xleftmargin=\parindent,
showstringspaces=false,
basicstyle=\fontsize{10}{11}\ttfamily,
}
\lstdefinestyle{cpp}{
style=shared,
language=C++,
keywordstyle=\bfseries\color{green!40!black},
commentstyle=\itshape\color{red!80!black},
identifierstyle=\color{blue},
stringstyle=\color{purple!40!black},
}
\lstdefinestyle{java}{
style=shared,
language=Java,
keywordstyle=\bfseries\color{green!40!black},
commentstyle=\itshape\color{purple!40!black},
identifierstyle=\color{blue},
stringstyle=\color{orange},
}
\lstdefinestyle{py}{
style=shared,
language=Python,
keywordstyle=\bfseries\color{green!40!black},
commentstyle=\itshape\color{purple!40!black},
identifierstyle=\color{blue},
stringstyle=\color{orange},
}
\lstdefinestyle{txt}{
style=shared,
}
\lstset{escapechar=@}
\pagestyle{fancy}
\fancyhead[L]{CygnusAlpha}
\fancyhead[R]{\thepage}
\fancyfoot[C]{}
\fancypagestyle{plain}
{
\fancyhead[L]{CygnusAlpha}
\fancyhead[R]{\thepage}
\fancyfoot[C]{}
}
\title{\vspace{-4ex}\Large{CygnusAlpha ACM-ICPC Notebook 2018 (C++)}}
\author{}
\date{}
\begin{document}
\begin{landscape}
\begin{multicols}{2}
\maketitle
\vspace{-13ex}
\tableofcontents
\pagestyle{fancy}
\input contents_cpp.tex
\end{multicols}
\end{landscape}
\centerline{\includegraphics[trim={0 0 0 3cm}, clip, width=\textwidth]{cheatsheet/p01.pdf}}
\centerline{\includegraphics[trim={0 0 0 3cm}, clip, width=\textwidth]{cheatsheet/p05.pdf}}
\centerline{\includegraphics[trim={0 0 0 3cm}, clip, width=\textwidth]{cheatsheet/p09.pdf}}
\newpage
\null
\newpage
\null
\newpage
\null
\end{document}