-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
63 lines (53 loc) · 1.41 KB
/
main.tex
File metadata and controls
63 lines (53 loc) · 1.41 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
% Setup:
%
% \begin{Problem}{\textbf{ NAME OF PROBLEM }} \label{filename}
% PROBLEM TEXT
%
% \emph{Hint: HINT}
%
% Filename: $\texttt{FILENAME.py}$
% \end{Problem}
\documentclass[a4paper, english]{report}
\usepackage{style}
\usepackage{ifikompendiumforside}
\usepackage{hyperref}
\newcommand{\py}[1]{\pythoninline{#1}}
\newcommand{\dataurl}{https://www.uio.no/studier/emner/matnat/ifi/IN1900/h20/ressurser/live_programmering}
\title{Exercises for IN1900}
\author{Cecilie Glittum, Eirill Strand Hauge, Simen Moe,\newline Ella Wolff Kristensen, Kristian Wold and Joakim Sundnes}
\begin{document}
\ififorside
%\maketitle
%\newpage
\chapter*{Preface}
\input{preface}
\chapter{Introduction to Python}
\input{intro}
\chapter{Computing with Formulas}
\input{formulas}
\chapter{Loops and Lists}
\input{looplist}
\chapter{Functions and Branching }
\input{funcif}
\chapter{User Input and Error Handling}
\input{input}
\chapter{Array Computing and Curve Plotting}
\input{arrayplot}
\chapter{Dictionaries and Strings}
\input{dictstring}
\chapter{Introduction to Classes}
\input{classes}
%\chapter{Random Numbers and Simple Games}
%\input{chapter8}
\chapter{Object-Oriented Programming}
\input{oop}
\appendix
\chapter{Sequences and Difference Equations}
\label{ch:diff_eq}
\input{appendixA}
\addtocounter{chapter}{3}
\chapter{Programming of Differential Equations}
\input{appendixE}
%\bibliographystyle{plain}
%\bibliography{RefList}
\end{document}