First line indent
A very common need in terms of text formatting is adding indent to first line of all paragraph. That is known as pilcrow (ΒΆ) or "red line" in some languages or conventions.
By default, Typst applies it to all paragraphs except the first (or one coming after title). To change it, use (all: true):
#set block(spacing: 1.2em)
#set par(
first-line-indent: 1.5em,
spacing: 0.65em,
)
The first paragraph is not affected
by the indent.
But the second paragraph is.
#line(length: 100%)
#set par(first-line-indent: (
amount: 1.5em,
all: true,
))
Now all paragraphs are affected
by the first line indent.
Even the first one.