-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPythonCookBook.tex
64 lines (51 loc) · 1.17 KB
/
PythonCookBook.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[dutch]{book}
\usepackage{amsmath}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{siunitx}
\usepackage{float}
\usepackage{babel}
\lstset
{ %Formatting for code in appendix
language=Python,
basicstyle=\footnotesize,
numbers=left,
stepnumber=1,
showstringspaces=false,
tabsize=1,
breaklines=true,
breakatwhitespace=false,
frame=single,
}
% \begin{reusefigure}[<float spec>]{<ref>}
\newenvironment{reusefigure}[2][htbp]
{\addtocounter{figure}{-1}%
\renewcommand{\theHfigure}{dupe-fig}% If you're using hyperref
\renewcommand{\thefigure}{\ref{#2}}% Figure counter is \ref
\renewcommand{\addcontentsline}[3]{}% Avoid placing figure in LoF
\begin{figure}[#1]}
{\end{figure}}
% Title Page
\title{Python Cookbook voor MTE}
\author{W.M. Jutte en J. Antonissen}
\begin{document}
\frontmatter
\maketitle
%\input{Glossaries}
%\input{Preface}
%\input{Abstract}
\tableofcontents
\mainmatter
\part{CircuitPython}
\input{IntroductieCircuitPython}
\input{FAQ}
\input{Ledjes}
\input{Sensoren}
\input{Aandrijving}
\input{Networking}
\input{RCboot}
%\input{Conclusion}
\appendix
\end{document}