{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "*this notebook works in any Sandbox environments* " ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "## Turn your notebooks into slideshows" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "" } }, "source": [ "Press `Space` to proceed." ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "You can write a regular Jupyter notebook, with the usual mix of markdown and code cells (keep on pressing `Space`)." ] }, { "cell_type": "markdown", "metadata": { "cell_style": "center", "slideshow": { "slide_type": "fragment" } }, "source": [ "In code cells you press `Shift-Enter` as usual to evaluate your code (but for now press `Space` again)." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "cell_style": "center", "slideshow": { "slide_type": "fragment" } }, "outputs": [ { "data": { "text/plain": [ "'Hello world'" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# this is where you press Shift-Enter\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "plt.ion()\n", "\n", "\"Hello world\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "But apart from that, `Space` is your friend!" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "You're in a browser, so remember that you can always use smaller / larger fonts with keyboard shortcuts like `Alt +` and `Alt -` or similar (it could be `Ctrl` instead of `Alt` depending on the platform you are on).\n", "\n", "