In [1]:
# Add all necessary imports here
import matplotlib.pyplot as plt

%matplotlib inline
plt.style.reload_library()
plt.style.use("ggplot")

Cover Slide 1


In [ ]:
<image>
<section data-background="img/cover.jpg" data-state="img-transparent no-title-footer">
<div class="intro-body">
<div class="intro_h1"><h1>Title</h1></div>
<h3>Subtitle of the Presentation</h3>
<p><strong><span class="a">Speaker 1</span></strong> <span class="b"></span> <span>Job Title</span></p>
<p><strong><span class="a">Speaker 2</span></strong> <span class="b"></span> <span>Job Title</span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</section>
</image>

Cover Slide 2

Title

Subtitle of the Presentation

Speaker 1 Job Title

Speaker 2 Job Title

 

 

Headline Slide


In [1]:
from IPython.display import Image
Image(filename='img/colorcontext.png', width=400)


Out[1]:

In [4]:
from IPython.display import YouTubeVideo
YouTubeVideo('2G8V00SkTvY')


Out[4]:

In [3]:
def f(x):
    """a docstring"""
    return x**2

Headline Subslide


In [4]:
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()


Fragment

Press the right arrow.

  • I am a Fragement
  • I am another one

Divider

Divider

Markdown Examples

Text

It's very easy to make some words bold and other words italic with Markdown. You can even link to Google!

Headline Subslide

Code

var s = "JavaScript syntax highlighting";
alert(s);
s = "Python syntax highlighting"
print s
No language indicated, so no syntax highlighting. 
But let's throw in a <b>tag</b>.

Python example

Code

# This program adds up integers in the command line
import sys
try:
    total = sum(int(arg) for arg in sys.argv[1:])
    print 'sum =', total
except ValueError:
    print 'Please supply integer arguments'

Headline Subslide

Lists

Sometimes you want numbered lists:

  1. Item 1
  2. Item 2
  3. Item 3
    • Item 3a
    • Item 3b

Headline Subslide

Lists

Sometimes you want bullet points:

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b
  • This is a long long long long long long long long long long long long long long long long long long long long long long long long long list

Headline Subslide

Blockquotes

As Kanye West said:

We're living the future so the present is our past.

inline code

I think you should use an <addr> element here instead.

Table

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

Images

If you want to embed images, this is how you do it:

Q&A Slide

Questions???