forked from marciomr/apostila-ip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apostila.tex
64 lines (51 loc) · 1.16 KB
/
apostila.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
\documentclass[a4,12pt]{book}
\usepackage[portuguese]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{amsmath,amssymb,amsthm,mathtools}
\usepackage{tikz}
\usepackage{listings}
\usepackage{color}
%\usepackage{clrscode}
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\lstset{
language=Java,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
basicstyle={\small\ttfamily},
numbers=none,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3
}
\newtheorem{example}{Exemplo}
\newtheorem{exercicio}{Exercício}
\begin{document}
\bibliographystyle{alpha}
\author{Márcio Moretto Ribeiro}
\title{Introdução à Programação}
\maketitle
\tableofcontents
\include{apresentacao}
\include{linguagens}
\include{variaveis}
\include{entrada}
\include{expressoes}
\include{fluxo}
\include{funcoes}
\include{arrays}
\include{depuracao}
\include{recursao}
\include{poo}
\include{excecoes}
\include{heranca}
\bibliography{ref}
\end{document}