BibTeX Check for Jupyter
Just making sure; the previous entry was all markdown
I just did a post showing BibTeX usage for Markdown posts. In this notebook, we'll also try citing but this time from within a Jupyter Notebook. I want to make sure this works in Jupyter too!
Just to assert that we're really using Python,...
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
print("Yes, this is Python code!")
# and a little more code
x = np.linspace(-5, 5, num=50)
y = x**2
plt.plot(x, y, 'o-')