forked from pllk/cphb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
book.tex
132 lines (104 loc) · 2.63 KB
/
book.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
\newcommand{\translationversion}{v1.3}
\documentclass[twoside,12pt,a4paper,brazilian]{book}
%\includeonly{chapter04,list}
\usepackage[brazilian]{babel}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\usepackage[table]{xcolor}
\usepackage{tikz}
\usepackage{multicol}
\usepackage{hyperref}
\usepackage{array}
\usepackage{microtype}
\usepackage{fouriernc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{framed}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{pifont}
\usepackage{ifthen}
\usepackage{makeidx}
\usepackage{enumitem}
\usepackage{titlesec}
\usepackage{skak}
\usepackage[scaled=0.95]{inconsolata}
\usetikzlibrary{patterns,snakes}
\pagestyle{plain}
\definecolor{keywords}{HTML}{44548A}
\definecolor{strings}{HTML}{00999A}
\definecolor{comments}{HTML}{990000}
\lstset{language=C++,frame=single,basicstyle=\ttfamily \small,showstringspaces=false,columns=flexible}
\lstset{
literate={ö}{{\"o}}1
{ä}{{\"a}}1
{ü}{{\"u}}1
}
\lstset{xleftmargin=20pt,xrightmargin=5pt}
\lstset{aboveskip=12pt,belowskip=8pt}
\lstset{
commentstyle=\color{comments},
keywordstyle=\color{keywords},
stringstyle=\color{strings}
}
\date{Rascunho de 19 de Agosto de 2019 \\ \vspace{1ex} \small Versão da tradução: \translationversion}
\usepackage[a4paper,vmargin=30mm,hmargin=33mm,footskip=15mm]{geometry}
\title{\Huge Manual do Programador Competitivo}
\author{\Large Antti Laaksonen}
\makeindex
\usepackage[totoc]{idxlayout}
\titleformat{\subsubsection}
{\normalfont\large\bfseries\sffamily}{\thesubsection}{1em}{}
\begin{document}
%\selectlanguage{finnish}
%\setcounter{page}{1}
%\pagenumbering{roman}
\frontmatter
\maketitle
\setcounter{tocdepth}{1}
\tableofcontents
\include{preface}
\mainmatter
\pagenumbering{arabic}
\setcounter{page}{1}
\newcommand{\key}[1] {\textbf{#1}}
%\part{Técnicas básicas}
%\include{chapter01}
%\include{chapter02}
%\include{chapter03}
%\include{chapter04}
%\include{chapter05}
%\include{chapter06}
%\include{chapter07}
%\include{chapter08}
%\include{chapter09}
%\include{chapter10}
%\part{Algoritmos de grafos}
%\include{chapter11}
%\include{chapter12}
%\include{chapter13}
%\include{chapter14}
%\include{chapter15}
%\include{chapter16}
%\include{chapter17}
%\include{chapter18}
%\include{chapter19}
%\include{chapter20}
%\part{Tópicos avançados}
%\include{chapter21}
%\include{chapter22}
%\include{chapter23}
%\include{chapter24}
%\include{chapter25}
%\include{chapter26}
%\include{chapter27}
%\include{chapter28}
%\include{chapter29}
%\include{chapter30}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliografia}
\include{list}
\cleardoublepage
\printindex
\end{document}