Chapter
Chapter 2

The First Chapter

A sample chapter

This chapter demonstrates how content flows. Mix prose with display math:

n=11n2=π26\sum_{n=1}^{\infty} \frac{1}{n^2} = \frac{\pi^2}{6}

And code blocks:

def fib(n):
    a, b = 0, 1
    for _ in range(n):
        a, b = b, a + b
    return a

Write the next chapter by adding a new .mdx file in data/book/ with an order greater than this one.

You're all caught up. Subscribe to get the next chapter in your inbox.

Comments

Loading comments…

Leave a comment