This guide assumes you already have an account and can sign in.
Go to Decks (/decks)
Create a new deck
Open that deck
In “Add a card”, choose Format (Markdown or LaTeX. If unsure, choose Markdown, it is very easy to learn.)
Fill in:
Front: the front of the card, will be shown to you to let you recall the answer
What is the capital of France?Back: the answer / explanation
The capital of France is Paris.Click Create
Click Study (/study) and review the card
Go to Notes (/notes)
Click New note
In “Options”, choose a Format: (if unsure, choose Markdown, it is very easy to learn.)
Markdown (for .arms / .md)
LaTeX (for .tex)
Fill Path (relative), for example:
haskell-tutorial.md
math/group-theory.arms
biology/cells.md
latex/linear-algebra.tex
Write some content (Markdown / LaTeX), and mark it up using ARMS documentation syntax:
Today we are learning some basic arithmetic, the peano axioms for natural numbers.
<card>
<front>
What is a natural number?
</front>
<back>
**Definition**: A natural number is either $0$ (zero)
or a successor of a natural number $S(n)$.
</back>
</card>
Once the natural number is defined, we can define what addition is.
<card><common>
**Definition**: Addition is defined by the following rules:
- For any natural number n, <cloze>$0 + n = n$</cloze>
- For any <cloze>natural numbers m and n, $S(m) + n = S(m + n)$</cloze>
</common></card>
**Example**.
<card><common>
Let's compute 2 + 2.
$$
\begin{align*}
2 + 2 & = S(S(0)) + S(S(0)) \\
& = <cloze>S(S(0) + S(S(0)))</cloze> \\
& = S(0 + S(S(S(0)))) \\
& = S(S(S(S(0)))) \\
& = 4
\end{align*}
$$
</common></card>Save the note
Click Generate preview
Optional: choose a deck destination
Click Confirm generation
What “Confirm generation” does:
uuid="..." attributes into your note (so identity persists)Next: