+Content with notebooks
+You can also create content with Jupyter Notebooks. This means that you can include
+code blocks and their outputs in your book.
+
+Markdown + notebooks
+As it is markdown, you can embed images, HTML, etc into your posts!
+
+You can also \(add_{math}\) and
+
+\[
+math^{blocks}
+\]
+or
+
+\[\begin{split}
+\begin{aligned}
+\mbox{mean} la_{tex} \\ \\
+math blocks
+\end{aligned}
+\end{split}\]
+But make sure you $Escape $your $dollar signs $you want to keep!
+
+
+
+Code blocks and outputs
+Jupyter Book will also embed your code blocks and output in your book.
+For example, here’s some sample Matplotlib code:
+
+
+
+
---------------------------------------------------------------------------
+ModuleNotFoundError Traceback (most recent call last)
+Cell In[1], line 1
+----> 1 from matplotlib import rcParams, cycler
+ 2 import matplotlib.pyplot as plt
+ 3 import numpy as np
+
+ModuleNotFoundError: No module named 'matplotlib'
+
+
+
+
+
+There is a lot more that you can do with outputs (such as including interactive outputs)
+with your book. For more information about this, see the Jupyter Book documentation
+
+