In [ ]:
IFrame('http://jupyter.org/', '100%', 400)
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 [ ]:
Latex('$\\alpha + \\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 + \\eta$')
In [ ]:
FileLinks("../groovy")
In [ ]:
FileLink("GroovyTest.ipynb")
In [ ]:
Markdown("It's very easy to do **bold** and *italics*:")
In [ ]:
Math('F(k) = \\int f(x) {2e\\pi i k} dx')
In [ ]:
SVG("https://www.w3.org/2008/site/images/Twitter_bird_logo_2012.svg")
In [ ]:
SVG("../../resources/img/flag.svg")
In [ ]:
Image("http://beakerx.com/static/img/twosigma.png")
In [ ]:
Image("../../../doc/resources/img/widgetArch.png")
In [ ]:
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.Path;
Path path = Paths.get("../../../doc/resources/img/widgetArch.png");
byte[] bytes = Files.readAllBytes(path);
Image(bytes)
In [ ]:
ScribdDocument("71048089", width: '50%', height: 400, start_page: 5, view_mode: 'slideshow')
In [ ]: