[Tex/LaTex] Change vertical spacing between blocks in tikzposter

tikzposter

The title says it all. How how can I change the vertical grid spacing between two blocks in a tikzposter document?

Best Answer

To change the default vertical spacing between blocks, use the class option blockverticalspace=<length>. To adjust the position of a single block, you can perhaps set bodyoffsety and titleoffsety in the \block options.

enter image description here

\documentclass[
  a2paper,
  blockverticalspace=5cm
  ]{tikzposter}
\begin{document}
\block{Abc}{Def}
\block{Foo}{Bar}
\block[
  bodyoffsety=3cm,
  titleoffsety=3cm
]{Bar}{Baz}
\end{document}