Welcome

Welcome to Modular Documents!

This document is made of modules of different types, which offer the ideal amount of flexibility for a wide range of content. For example, this paragraph is a text module.

What type of module is this?

Select an answer...

To get a version of this document that you can edit, sign in in the top right then click "Make a copy."

Now, try double-clicking this module to edit it! Text modules support GitHub Flavored Markdown...

...and LaTeX\LaTeX modules are great for math!
x2+y2+z2=1x^2 + y^2 + z^2 = 1

You can also upload custom images:

And include code blocks:

1def fibonacci(n):
2    if n <= 1:
3        return 1
4    return fibonacci(n - 1) + fibonacci(n - 2)

For a real-world use case, check out this example lesson on vector fields.