-
Notifications
You must be signed in to change notification settings - Fork 35
/
FirstYearComputing_Master.tex
57 lines (42 loc) · 1.01 KB
/
FirstYearComputing_Master.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
\date{}
\author{Southampton Mathematics}
\documentclass{book}
\usepackage{nbconvert_book}
%%%%%
% User-defined commands for the LaTeX chapter
% New commands; see section 1.1
\newcommand{\pda}[2]{\frac{\partial {#1}}{\partial {#2}}}
\newcommand{\uos}{\textsc{University of Southampton}}
% Renewed commands; see section 1.2
\renewcommand{\vec}[1]{\mathbf{#1}}
% New environments; see section 2
\newenvironment{solution}[1]{%
\begin{center}
\rule{#1}{.1pt}
\end{center}
}{%
\begin{center}
\rule{0.9\textwidth}{.1pt}
\end{center}
}
%%%%%
\title{Mathematics with Python}
\begin{document}
\maketitle
\tableofcontents
\addtocounter{chapter}{-1}
\include{00-first-steps}
\include{01-python-basics}
\include{02-programs}
\include{03-loops-control-flow}
\include{04-basic-plotting}
\include{05-classes-oop}
\include{06-numpy-plotting}
\include{07-sympy}
\include{08-statistics}
\include{latex_chapter}
\appendix
\include{09-exceptions-testing}
\include{10-generators}
\include{11-more-classes}
\end{document}