MIME Outputs

You can put math and HTML into notebooks directly with markdown cells. BeakerX also has an API for generation and display of multimedia content.


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

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

In [ ]:
new MIMEContainer('text/html', '<h2> Hello, world!</h2>')

In [ ]:
new MIMEContainer(MIMEContainer.MIME.TEXT_HTML, '<h3> Hello, world!</h3>')

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

In [ ]:
FileLinks("../groovy")

In [ ]:
FileLink("GroovyTest.ipynb")

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

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

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

In [ ]:
ScribdDocument("71048089", width: '50%', height: 400, start_page: 5, view_mode: 'slideshow')

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

In [ ]:
YoutubeVideo("gSVvxOchT8Y")

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

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

In [ ]:
SVG("../../../doc/resources/img/atom.svg")

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

In [ ]:
Image("../../../doc/resources/img/widgetArch.png")

In [ ]: