This is a Slide!

With a sub heading.

the custom.css file aligns h1 and h2 to the center, but not

h3

Some stuff in the slide.

Another slide, with columns!

This is on the right!
This is on the left!

Equations and Stuff!

This text is at the top.

These are some equations: $F \approx 3 \times 10^7$ ergs s-1 cm -2,
$F_{AR} \approx 10^3 - 10^4$ ergs s-1 cm -2,
$\rho_0 = 23.6 m_p N_e$
LOOK Numbers!

Markdown!

Gone back to plain markdown now, you can't have markdown in html block elements (live div's).

Code!


In [5]:
# it's a notebook after all

def my_awesome_function(awesomeness):
    """
    You are awesome.
    """
    print("Hello, you awesome person.", awesomeness)

In [6]:
my_awesome_function("Awesome!")


Hello, you awesome person. Awesome!