I have a table
followed by a grid
, and I would like to have no spacing between them (currently there is ~0.5cm white space)
Found it :
#table(...)
#v(-13pt) // moves grid up
#grid(...)
If you do not want to hard-code the value, you can use #v(0pt, weak: true)
instead. With weak: true
, it will consume the existing spacing.
4 Likes
Thanks!
Although it did not work with page header and a table after, I have to use a hard coded value #v(-34pt)
in my case.