Created
January 5, 2019 04:57
-
-
Save joshuacook/5a7dfc7b52c53ebb3ae9d3018bd0741d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "cells": [ | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "#### A Note on Markdown and Latex in Jupyter" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "Jupyter markdown cells can take markdown, html, or latex to render text. Latex (pronouced \"lay-teck\") is a programming language for designed for rendering technical writing, especially math.\n", | |
| "\n", | |
| "For example, if we write\n", | |
| "\n", | |
| " $$\\frac{1}{2}$$\n", | |
| " \n", | |
| "it will appear as\n", | |
| "\n", | |
| "$$\\frac{1}{2}$$" | |
| ] | |
| } | |
| ], | |
| "metadata": { | |
| "kernelspec": { | |
| "display_name": "Python 3", | |
| "language": "python", | |
| "name": "python3" | |
| }, | |
| "language_info": { | |
| "codemirror_mode": { | |
| "name": "ipython", | |
| "version": 3 | |
| }, | |
| "file_extension": ".py", | |
| "mimetype": "text/x-python", | |
| "name": "python", | |
| "nbconvert_exporter": "python", | |
| "pygments_lexer": "ipython3", | |
| "version": "3.6.6" | |
| } | |
| }, | |
| "nbformat": 4, | |
| "nbformat_minor": 2 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment