Hi.
$
#[hello]&= \
#[world]& \
$
$
#[hello]&= \
#[world]&= \
$
Why is the first world
slightly shifted to the right?
Hi.
$
#[hello]&= \
#[world]& \
$
$
#[hello]&= \
#[world]&= \
$
Why is the first world
slightly shifted to the right?
Hello. Maybe the same reason it happens with this:
$
a &) \
a &=
$
$
"hello" & = \
"world" &
$
$
"hello" & = \
"world" & =
$
It aligns it with the equal sign.
Thanks for answering!
In my initial mental model, &
should be a separator, instead of attached to a character. In what layer is Typst’s alignment system? Is it builtin the rust engine or can I replace it with some custom package function?
If no explicit packages are used in a document, then it’s baked into the compiler written in Rust. You can change its behavior by patching the source code.