#!/usr/bin/env python # coding: utf-8 # In[1]: # All imports and setups get_ipython().run_line_magic('run', 'common/import_all.py') from common.setup_notebook import * config_ipython() setup_matplotlib(matplotlib_file_path='styles_files/matplotlibrc.json') set_css_style('styles_files/custom.css') # [I am a link](link.com) # # This is a h1 # ## This is a h2 # ### This is a h3 # #### This is a h4 # This is a paragraph # **bold** and _italics_ # This contains some $\TeX$, both inline, $a = 3$ and in a new line $$y(x) = x^3$$ # In[4]: plt.plot([i for i in range(10)], [i**2 for i in range(10)], label='$x^2$') plt.title('A matplotlib plot') plt.xlabel('x') plt.ylabel('y') plt.legend() plt.show(); # In[ ]: