In [4]:
Latex('$\\alpha^2 + \\eta$')


Out[4]:
$\alpha^2 + \eta$

In [5]:
HTML('<h1>Hello, world!</h1>')


Out[5]:

Hello, world!


In [6]:
new MIMEContainer('text/html', '<h1> Hello World!</h1>')


Out[6]:

Hello World!


In [7]:
new MIMEContainer('text/latex', '$\\alpha^2 + \\eta$')


Out[7]:
$\alpha^2 + \eta$

In [9]:
FileLink("./plotDemo.ipynb")





In [10]:
Markdown("It's **very** easy to do **bold** and *italics*:")


Out[10]:

It's very easy to do bold and italics:


In [11]:
Math('F(k) = \\int_{-\\infty}^{\\infty} f(x) e^{2\\pi i k} dx')


Out[11]:
$$F(k) = \int_{-\infty}^{\infty} f(x) e^{2\pi i k} dx$$

In [12]:
IFrame('http://jupyter.org/', '100%', 400)


Out[12]:

In [23]:
ScribdDocument("71048089", '100%', 400)


Out[23]:

In [14]:
VimeoVideo("139304565",400,300)


Out[14]:

In [15]:
YoutubeVideo("gSVvxOchT8Y")


Out[15]:

In [16]:
Video('https://archive.org/download/Sita_Sings_the_Blues/Sita_Sings_the_Blues_small.mp4')


Out[16]:

In [17]:
SVG("https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/car.svg")


Out[17]:

In [18]:
SVG("./atom.svg")


Out[18]:

In [19]:
Image("https://doggydollars.com/wp-content/uploads/2016/02/DoggyDollars-Retriever-300x300.jpg")


Out[19]:

In [20]:
Image("./doggy.jpg")


Out[20]:

In [21]:
Image("./widgetArch.png")


Out[21]:

In [22]:
import java.io.File;
import com.google.common.io.ByteStreams;
import com.google.common.io.Files;

def imgFile = new File("./widgetArch.png");
def bytes = Files.toByteArray(imgFile);
Image(bytes)


Out[22]:

In [ ]: