diff --git a/notebooks/01_Introducing_Python.ipynb b/notebooks/01_Introducing_Python.ipynb
index e328560..df12cab 100644
--- a/notebooks/01_Introducing_Python.ipynb
+++ b/notebooks/01_Introducing_Python.ipynb
@@ -32,7 +32,7 @@
"\n",
"Matt Knepley and Aron Ahmadia\n",
"\n",
- "[](http://creativecommons.org/licenses/by/3.0/deed.en_US) "
+ "[](http://creativecommons.org/licenses/by/3.0/deed.en_US) "
]
},
{
@@ -515,7 +515,7 @@
"and also includes motivating material from \n",
"[Nathan Collier](http://www.mendeley.com/profiles/nathan-collier/), KAUST.\n",
"\n",
- " \n"
+ "
\n"
]
},
{
@@ -598,7 +598,7 @@
"reproducible). However, beware that there is no end to the number\n",
"of different ways to do essentially the same thing. \n",
"\n",
- "\n",
+ "\n",
"\n",
"> Image credit [Bruno Oliveira](https://plus.google.com/102451193315916178828/posts/MGxauXypb1Y)"
]
@@ -696,7 +696,7 @@
"\n",
"### Stiffness matrix computation\n",
"\n",
- "\n"
+ "\n"
]
},
{
@@ -714,7 +714,7 @@
"\n",
"### Python parses a datafile and makes plots of current progress\n",
"\n",
- "\n"
+ "\n"
]
},
{
@@ -732,7 +732,7 @@
"\n",
"### Nonlinear, time dependent problem\n",
"\n",
- ""
+ ""
]
},
{
@@ -750,7 +750,7 @@
"\n",
"### Method for fitting surface to data\n",
"\n",
- "\n"
+ "\n"
]
},
{
@@ -769,7 +769,7 @@
"\n",
"### Python manages floors and columns\n",
"\n",
- ""
+ ""
]
},
{
@@ -787,7 +787,7 @@
"\n",
"### Python runs C code, post-processes the results, and generates a LaTeX table\n",
"\n",
- "\n"
+ "\n"
]
},
{
@@ -867,8 +867,8 @@
"collapsed": false,
"input": [
"import math\n",
- "infile = \"files/examples/data/numbers\"\n",
- "outfile = \"files/examples/data/f_numbers\"\n",
+ "infile = \"../examples/data/numbers\"\n",
+ "outfile = \"../examples/data/f_numbers\"\n",
"\n",
"f = open(infile,'r')\n",
"g = open(outfile,'w')\n",
@@ -994,7 +994,7 @@
"import re\n",
"pattern1 = \"@Book{(.*),\"\n",
"pattern2 = \"\\s+title\\s+=\\s+{(.*)},\"\n",
- "for line in file('files/examples/data/python.bib'):\n",
+ "for line in file('../examples/data/python.bib'):\n",
" match = re.search(pattern1,line)\n",
" if match: \n",
" print \"Found a book with the tag '%s'\" % match.group(1)\n",
diff --git a/notebooks/02_Speeding_Python.ipynb b/notebooks/02_Speeding_Python.ipynb
index 4dfc098..6696a6c 100644
--- a/notebooks/02_Speeding_Python.ipynb
+++ b/notebooks/02_Speeding_Python.ipynb
@@ -28,7 +28,7 @@
"\n",
"Matt Knepley and Aron Ahmadia\n",
"\n",
- "[](http://creativecommons.org/licenses/by/3.0/deed.en_US) "
+ "[](http://creativecommons.org/licenses/by/3.0/deed.en_US) "
]
},
{
@@ -265,7 +265,7 @@
"* single data-type objects\n",
"* powerful array scalar types\n",
"\n",
- "\n",
+ "\n",
"\n"
]
},
diff --git a/notebooks/03.1_Distributed_Computing.ipynb b/notebooks/03.1_Distributed_Computing.ipynb
index 06eba51..817f36a 100644
--- a/notebooks/03.1_Distributed_Computing.ipynb
+++ b/notebooks/03.1_Distributed_Computing.ipynb
@@ -20,7 +20,7 @@
"