-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.tex
More file actions
133 lines (102 loc) · 2.71 KB
/
Copy pathbook.tex
File metadata and controls
133 lines (102 loc) · 2.71 KB
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
133
% The contents of this file is
% Copyright (c) 2021- David S. Read, All Rights Reserved
% Previous version, Copyright (c) 2009-2011 Charles R. Severance, All Rights Reserved
% Copyright (c) 2010- Charles R. Severance, All Rights Reserved
%\documentclass[10pt,b5paper]{book}
\documentclass[11pt]{book}
% \usepackage[width=5.25in,height=7.50in,hmarginratio=3:2,vmarginratio=1:1]{geometry}
\usepackage[size=journal,gutter=0.75in,trim,bleed]{createspace}
\usepackage{pslatex}
\usepackage{url}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{amsmath, amsthm, amssymb}
%%\usepackage{exercise}
\usepackage{makeidx}
\usepackage{setspace}
\usepackage{hevea}
\usepackage{alltt}
%%\usepackage{upquote}
\usepackage{float}
%%\usepackage{mdframed}
\usepackage{hyperref}
\usepackage{wrapfig}
\usepackage{upquote}
\usepackage{multicol}
\usepackage{enumitem}
\usepackage{multirow} % Required for multirow tables
\usepackage[raggedrightboxes]{ragged2e} % Suppress full justification of text in cells
\usepackage{longtable} % To display tables on several pages
\usepackage{booktabs} % "prettier" tables
\usepackage{wrapfig}
%\hypersetup{
% colorlinks,
% citecolor=black,
% filecolor=black,
% linkcolor=black,
% urlcolor=black
%}
\usepackage{xcolor}
\usepackage[backend=bibtex,style=authoryear,maxbibnames=16]{biblatex}
%\usepackage[backend=biber,style=apa]{biblatex}
%\usepackage[style=numeric]{biblatex}
\addbibresource{PythonIntroBook.bib}
\DefineBibliographyStrings{english}{%
bibliography = {References},
}
\setlength\bibitemsep{2\itemsep}
%\bibliography{PythonIntroBook.bib}
\hypersetup{
colorlinks,
linkcolor=black,
filecolor={green!30!black},
citecolor=black,
urlcolor={blue!30!black}
}
\newcommand{\thetitle}{Introduction to Computer Science and Programming: Python Edition}
\newcommand{\theversion}{1.0.0}
\makeindex
\setcounter{tocdepth}{3}
\begin{document}
\frontmatter
\input{00-cover}
\input{00-preface}
% Table of Contents
\tableofcontents
\clearemptydoublepage
% START THE BOOK
\mainmatter
\input{01-intro}
\input{02-variables.tex}
\input{03-conditional.tex}
\input{04-functions.tex}
\input{05-iterations.tex}
\input{17-recursion.tex}
\input{06-strings.tex}
\input{07-files.tex}
\input{08-lists.tex}
\input{09-dictionaries.tex}
\input{10-tuples.tex}
\input{11-regex.tex}
%\input{12-network.tex}
%\input{13-web.tex}
%\input{14-database.tex}
%\input{15-viz.tex}
%\input{16-tasks.tex}
\input{18-exploring-cs.tex}
%\nocite{*}
\appendix
%\input{PiSetupCs106}
%\input{PiLabs}
%\input{AA-windows}
%\input{AB-apple}
%\input{20-objectorientedconcepts}
\input{AC-contrib}
\input{AD-copyright}
\input{AE-cstimeline}
\printbibliography[heading=bibintoc]
\normalsize
\printindex
\clearemptydoublepage
\end{document}