Skip to content

Instantly share code, notes, and snippets.

@leftaroundabout
Created March 4, 2018 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leftaroundabout/c39339680666bb6a961981ba88d816e7 to your computer and use it in GitHub Desktop.
Save leftaroundabout/c39339680666bb6a961981ba88d816e7 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Directly with Markdown/MathJax\n",
"$\\mathcal{C}\\mathbb{R}$"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### With HaTeX\n",
"(Rendering via LaTeX by MathJax)"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"{-# LANGUAGE OverloadedStrings #-}\n",
"import Text.LaTeX\n",
"import Text.LaTeX.Packages.AMSMath\n",
"import Text.LaTeX.Packages.AMSSymb\n",
"import Text.LaTeX.Packages.AMSFonts"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\mathcal{C}\\mathbb{R}$"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"math $ mathcal \"C\" <> mathbb \"R\" :: LaTeX"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### With Unicode\n",
"(Rendering in plain text)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"𝓒ℝ"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"putStrLn \"𝓒ℝ\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### With TeXMyMath\n",
"(Rendering via HaTeX and LaTeX by MathJax)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import Math.LaTeX.Prelude"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$\\mathcal{C}\\mathbb{R}$"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"\"\" <> (𝓒<>ℝ) $<> \"\" :: LaTeX"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Haskell",
"language": "haskell",
"name": "haskell"
},
"language_info": {
"codemirror_mode": "ihaskell",
"file_extension": ".hs",
"name": "haskell",
"version": "8.2.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment