Alignment
General alignment
By default display math is center-aligned, but that can be set up with show
rule:
#show math.equation: set align(right)
$
(a + b)/2
$
Or using align
element:
#align(left, block($ x = 5 $))
Alignment points
When equations include multiple alignment points (&), this creates blocks of alternatingly right- and left- aligned columns.
In the example below, the expression (3x + y) / 7
is right-aligned and = 9
is left-aligned.
$ (3x + y) / 7 &= 9 && "given" \
3x + y &= 63 & "multiply by 7" \
3x &= 63 - y && "subtract y" \
x &= 21 - y/3 & "divide by 3" $
The word "given" is also left-aligned because &&
creates two alignment points in a row, alternating the alignment twice.
& &
and &&
behave exactly the same way.
Meanwhile, "multiply by 7" is left-aligned because just one &
precedes it.
Each alignment point simply alternates between right-aligned/left-aligned.