Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Programming course
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
courses
Programming course
Commits
c709bc13
Commit
c709bc13
authored
11 years ago
by
Vermaat
Browse files
Options
Downloads
Patches
Plain Diff
Add usage note to notebooks
parent
64d7da17
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
matplotlib.ipynb
+24
-4
24 additions, 4 deletions
matplotlib.ipynb
numpy.ipynb
+43
-13
43 additions, 13 deletions
numpy.ipynb
python.ipynb
+20
-0
20 additions, 0 deletions
python.ipynb
with
88 additions
and
18 deletions
README.md
+
1
−
1
View file @
c709bc13
...
...
@@ -23,7 +23,7 @@ notebook server:
ipython notebook
Choose
`
Slideshow
`
in the
`
Cell Toolbar
`
menu.
Choose
*
Slideshow
*
in the
*
Cell Toolbar
*
menu.
Some aditional information on editing slides in the Notebook can be found
here in
[
this presentation
](
http://www.slideviper.oquanta.info/tutorial/slideshow_tutorial_slides.html
)
.
...
...
This diff is collapsed.
Click to expand it.
matplotlib.ipynb
+
24
−
4
View file @
c709bc13
...
...
@@ -29,6 +29,26 @@
"License: [Creative Commons Attribution 3.0 License (CC-by)](http://creativecommons.org/licenses/by/3.0)"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "skip"
}
},
"source": [
"About this notebook\n",
"===\n",
"\n",
"This notebook is the source for a set of slides. If you want to edit them, be sure to choose *Slideshow* in the *Cell Toolbar* menu.\n",
"\n",
"You can use nbconvert to convert the slides to HTML and serve them:\n",
"\n",
" ipython nbconvert --to slides --post serve matplotlib.ipynb\n",
"\n",
"This will open the slides in a new browser window."
]
},
{
"cell_type": "code",
"collapsed": false,
...
...
@@ -59,7 +79,7 @@
"input": [
"%%html\n",
"<style type=\"text/css\">\n",
"/*
nbconvert adds a
vertical scrollbar
to the slides
. */\n",
"/*
Remove the
vertical scrollbar
added by nbconvert
. */\n",
".reveal {\n",
" overflow-y: hidden;\n",
"}\n",
...
...
@@ -75,7 +95,7 @@
{
"html": [
"<style type=\"text/css\">\n",
"/*
nbconvert adds a
vertical scrollbar
to the slides
. */\n",
"/*
Remove the
vertical scrollbar
added by nbconvert
. */\n",
".reveal {\n",
" overflow-y: hidden;\n",
"}\n",
...
...
@@ -84,11 +104,11 @@
"metadata": {},
"output_type": "display_data",
"text": [
"<IPython.core.display.HTML at 0x3
6c851
0>"
"<IPython.core.display.HTML at 0x3
57a55
0>"
]
}
],
"prompt_number":
2
"prompt_number":
3
},
{
"cell_type": "markdown",
...
...
This diff is collapsed.
Click to expand it.
numpy.ipynb
+
43
−
13
View file @
c709bc13
...
...
@@ -29,22 +29,53 @@
"License: [Creative Commons Attribution 3.0 License (CC-by)](http://creativecommons.org/licenses/by/3.0)"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "skip"
}
},
"source": [
"About this notebook\n",
"===\n",
"\n",
"This notebook is the source for a set of slides. If you want to edit them, be sure to choose *Slideshow* in the *Cell Toolbar* menu.\n",
"\n",
"You can use nbconvert to convert the slides to HTML and serve them:\n",
"\n",
" ipython nbconvert --to slides --post serve numpy.ipynb\n",
"\n",
"This will open the slides in a new browser window."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"%matplotlib inline\n",
"\n",
"from IPython.display import HTML, Image\n",
"\n",
"# nbconvert adds a vertical scrollbar to the slides.\n",
"HTML(\"\"\"\n",
"%matplotlib inline"
],
"language": "python",
"metadata": {
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [],
"prompt_number": 8
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"%%html\n",
"<style type=\"text/css\">\n",
"/* Remove the vertical scrollbar added by nbconvert. */\n",
".reveal {\n",
" overflow-y: hidden;\n",
"}\n",
"</style>\n",
"\"\"\")"
"</style>"
],
"language": "python",
"metadata": {
...
...
@@ -55,22 +86,21 @@
"outputs": [
{
"html": [
"\n",
"<style type=\"text/css\">\n",
"/* Remove the vertical scrollbar added by nbconvert. */\n",
".reveal {\n",
" overflow-y: hidden;\n",
"}\n",
"</style>
\n
"
"</style>"
],
"metadata": {},
"output_type": "pyout",
"prompt_number": 2,
"output_type": "display_data",
"text": [
"<IPython.core.display.HTML at 0x2
152d5
0>"
"<IPython.core.display.HTML at 0x2
ba441
0>"
]
}
],
"prompt_number":
2
"prompt_number":
7
},
{
"cell_type": "markdown",
...
...
This diff is collapsed.
Click to expand it.
python.ipynb
+
20
−
0
View file @
c709bc13
...
...
@@ -29,6 +29,26 @@
"License: [Creative Commons Attribution 3.0 License (CC-by)](http://creativecommons.org/licenses/by/3.0)"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "skip"
}
},
"source": [
"About this notebook\n",
"===\n",
"\n",
"This notebook is the source for a set of slides. If you want to edit them, be sure to choose *Slideshow* in the *Cell Toolbar* menu.\n",
"\n",
"You can use nbconvert to convert the slides to HTML and serve them:\n",
"\n",
" ipython nbconvert --to slides --post serve python.ipynb\n",
"\n",
"This will open the slides in a new browser window."
]
},
{
"cell_type": "code",
"collapsed": false,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment