before export to html,pdf, ?

parent 1fed7839
...@@ -2,7 +2,10 @@ ...@@ -2,7 +2,10 @@
"cells": [ "cells": [
{ {
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {
"hideCode": false,
"hidePrompt": false
},
"source": [ "source": [
"# Hoofdstuk1\n", "# Hoofdstuk1\n",
"Dit is de eerste regel van hoofdstuk1" "Dit is de eerste regel van hoofdstuk1"
...@@ -10,31 +13,71 @@ ...@@ -10,31 +13,71 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 1, "execution_count": 2,
"metadata": {}, "metadata": {
"hideCode": false,
"hidePrompt": false
},
"outputs": [ "outputs": [
{ {
"name": "stdout", "name": "stdout",
"output_type": "stream", "output_type": "stream",
"text": [ "text": [
"3.14\n" "3.1415\n"
] ]
} }
], ],
"source": [ "source": [
"x =3.14\n", "x =3.1415\n",
"print(x)" "print(x)"
] ]
}, },
{
"cell_type": "markdown",
"metadata": {
"hideCode": false,
"hidePrompt": false
},
"source": [
"## Hoofdstuk2\n",
"Dit is de eerste regel van hoofdstuk2"
]
},
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": 7,
"metadata": {}, "metadata": {
"outputs": [], "hideCode": false,
"source": [] "hidePrompt": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2.718281828459045\n"
]
}
],
"source": [
"import math\n",
"y = math.exp(1)\n",
"print(y)"
]
},
{
"cell_type": "markdown",
"metadata": {
"hideCode": false,
"hidePrompt": false
},
"source": [
"Dit is een doodgewone tekst over de contante `e` met waarde {{y}}"
]
} }
], ],
"metadata": { "metadata": {
"hide_code_all_hidden": false,
"kernelspec": { "kernelspec": {
"display_name": "Python 3", "display_name": "Python 3",
"language": "python", "language": "python",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment