Skip to content

Instantly share code, notes, and snippets.

@vencejo
Created September 2, 2013 10:49
Show Gist options
  • Save vencejo/6411615 to your computer and use it in GitHub Desktop.
Save vencejo/6411615 to your computer and use it in GitHub Desktop.
Plantilla de trabajo básica con ipython
{
"metadata": {
"name": "Plantilla de trabajo"
},
"name": "Plantilla de trabajo",
"nbformat": 2,
"worksheets": [
{
"cells": [
{
"cell_type": "markdown",
"source": "##Modulos basicos de trabajo a importar\npylab combines pyplot with numpy into a single namespace. This is convenient for interactive work,\nbut for programming it is recommended that the namespaces be kept separate, e.g.:"
},
{
"cell_type": "code",
"collapsed": true,
"input": "import numpy as np\nimport matplotlib.pyplot as plt",
"language": "python",
"outputs": [],
"prompt_number": 1
},
{
"cell_type": "markdown",
"source": "#Ejemplo de edicion con markdown\n##Ejemplo de edicion con markdown\n###Ejemplo de edicion con markdown\n\nEsto es un parrafo normal sin ninguna marca\n\n* Un elemento de lista\n + Un subelemento\n* otro elemento de la lista\n\n_Enfasis_\n__strong enfasis__\n\nSome text with `some code` inside\n\n> \"This entire paragraph of text will be enclosed in an HTML blockquote element.\nBlockquote elements are reflowable. You may arbitrarily\nwrap the text to your liking, and it will all be parsed\ninto a single blockquote element.\"\n\n[Markdown](http://en.wikipedia.com/wiki/Markdown)\n\n![Alt text](/path/to/img.jpg)"
},
{
"cell_type": "code",
"collapsed": true,
"input": "",
"language": "python",
"outputs": []
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment