Comment by doerig
2 days ago
You mean absolutely positioning it? You can do that with the place function and displacing it with dx/dy from the origin (https://typst.app/docs/reference/layout/place). Example: #place(top + left, dy: 2cm, dx: 4cm, image("image.png"))
That seems usable for manual layout, but it looks painful to use to place images without knowing exactly where they might end up on a page. I reuse my LaTeX code to make volumes of books, and I never touch the code. It's fire and forget for me, which this does not seem to solve.
> but it looks painful to use to place images without knowing exactly where they might end up on a page.
they end up exactly at the specified location?
Presumably they're referring to the ability to parameterize the target page size. In that case, absolute coordinates don't work well (if at all).
3 replies →