General resources
Aqui pondré la formación básica de Markdown. Procede del tutorial de MacDown.
Negrita con dos *
Cursiva con un *
subrayado con un _
Salto de línea: doble retorno o dejar dos espacios al final del texto
Sino aparece en la misma línea.

Emails: urls entre <>
$~$
Puedes darle título al poner encima: Google
[Google](http://www.google.com "Google España")
Podemos poner enlaces separados (para agruparlos en otro sitio): Hotmail (fijate doble corchete)
[Hotmail][hotmail_web] (fijate doble corchete)
[hotmail_web]: http://www.hotmail.com "Outlook"
Citas con >, se pueden anidar a multiples niveles:
Empezamos la cita
Anidamos un nivel
Anidamos otro nivel Ahora volvemos al primero
Código con python code
Si lo usamos doble es porque queremos usar corchetes en medio `(backticks)`
Si queremos hacer un bloque, solo debemos dar cuatro espacios o un tab:
python code
print("hola")
Tambien podemos hacer bloques con tres ‘ o ~ :
(especificar el lenguaje despues de las tres, como por ejemplo `python (y así pone colores del lenguaje).
python code
import numpy as np
Línea en blanco: $~$
Linea divisoria: tres * o -
$~$
Para darle un titulo a un apartado (para que vaya directamente un enlace) usamos:
<a name="nombre-parte"></a>Titulo
Tambien podemos usar headings ids de otra forma: ### Titulo {#custom-id}
Y ahora para un enlace de ejemplo para ir arriba: aqui [enlace](#parte)
| Left Aligned | Center Aligned | Right Aligned |
|:------------- |:---------------:| -------------:|
| col 3 is | some wordy text | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
| Left Aligned | Center Aligned | Right Aligned |
|---|---|---|
| col 3 is | some wordy text | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
The following is a list of optional inline markups supported:
| Option name | Markup | Result if enabled |
|---|---|---|
| Intra-word italic | So A*maz*ing | So Amazing |
| Intra-word bold | So A*maz*ing | So Amazing |
| Strikethrough | ~~Much wow~~ | |
| Underline [^under] | _So doge_ | So doge |
| Quote [^quote] | "Such editor" | Such editor |
| Highlight | ==So good== | So good |
| Superscript | hoge\^fuga\^ | hogefuga |
| Autolink | http://t.co | http://t.co |
| Footnotes | [\^4] and [\^4]: | 1 and footnote 4 |
Se usan dos $ al inicio y al final:
\[T^{\mu\nu}=\begin{pmatrix} \varepsilon&0&0&0\\ 0&\varepsilon/3&0&0\\ 0&0&\varepsilon/3&0\\ 0&0&0&\varepsilon/3 \end{pmatrix},\]integrals:
\[P_\omega={n_\omega\over 2}\hbar\omega\,{1+R\over 1-v^2}\int\limits_{-1}^{1}dx\,(x-v)|x-v|,\]Esta es la descripción
Se insertan entre dos : poniendo el nombre del emoji.
:joy: :joy:
Todos los emojis: aqui
Hay que ponerla al inicio del archivo y usar tres —:
---
title: "Macdown is my friend"
date: 2014-06-06 20:00:00
---
conda install -c conda-forge jupytextFile > Jupytext podemos darle a autoguardadojupytext --to notebook --execute notebook.md # convert notebook.md to an .ipynb file and run itYou don’t have to use a number. Arbitrary things like [^footy note4] and [^footy note4]: will also work. But they will render as numbered footnotes. Also, no need to keep your footnotes in order, I will sort out the order for you so they appear in the same order they were referenced in the text body. You can even keep some footnotes near where you referenced them, and collect others at the bottom of the file in the traditional place for footnotes. (Esto aparece al final porque es una nota). ↩