-
Notifications
You must be signed in to change notification settings - Fork 9
/
programming-arcana.tex
68 lines (56 loc) · 1.89 KB
/
programming-arcana.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
% Document is a book printed on A4 paper
\documentclass[english,a4paper,10pt]{book}
\input{preamble/preamble}
% \includeonly{topics/preface/preface}
% \includeonly{topics/0-getting-started/getting-started}
% \includeonly{topics/programs-and-compilers/compilers}
% \includeonly{topics/program-creation/program-creation}
% \includeonly{topics/storing-using-data/storing-using-data}
% \includeonly{topics/control-flow/control-flow}
% \includeonly{topics/arrays/arrays}
% \includeonly{topics/type-decl/type-decl}
% \includeonly{topics/dynamic-memory/dynamic-memory}
% \includeonly{topics/file-io/file-io}
\begin{document}
\dominitoc
\dominilof
\dominilot
\faketableofcontents
\frontmatter
\input{preamble/title}
\mainmatter
\include{topics/preface/preface}
% 0 - Getting Started
% 1 - Programs: Commands, Data, and Sequence
% 2 - Procedures and Parameters
% 3 - Functions
% 4 - Control Flow
% 5 - Custom Types
% 6 - Arrays
% 7 - Dynamic Memory
% 8 - Program Design
% 9 - Object Oriented Programming
% 3 - Parameters: Pass by Reference
% 1 - Sequence and Procedure Calls
% 2 - Procedure declaration
% 2 - Storing and Using Data
% 3 - Parameters and Pass By Reference
% 3 - Control Flow
% 4 - Custom types
% 5 - Arrays
% 6 - Dynamic Memory
\include{topics/0-getting-started/getting-started}
% \include{topics/programs-and-compilers/compilers}
\include{topics/program-creation/program-creation}
% \include{topics/program-creation/procedure-decl}
\include{topics/storing-using-data/storing-using-data}
\include{topics/control-flow/control-flow}
\include{topics/arrays/arrays}
\include{topics/type-decl/type-decl}
\include{topics/dynamic-memory/dynamic-memory}
\include{topics/file-io/file-io}
% \include{topics/modular-programming/modular-programming}
% \appendix
% \printglossaries
% \include{appendix/starting-swingame}
\end{document}