Posso escrever em Markdown qualquer coisa, pôr figuras, links, $\LaTeX$, qualquer coisa.
Vou plotar um gráfico com o matplotlib.
In [2]:
%matplotlib inline
In [3]:
import matplotlib.pyplot as plt
import numpy as np
In [11]:
x = np.linspace(0, 3*np.pi, 500)
plt.plot(x, np.sin(x**2))
plt.xlabel('$x$')
plt.ylabel('$sen(x^2)$')
Out[11]: