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