如何在页面开头设置块

How Can I set block at the starting of the page

大家好,有人知道如何将块放在页面的开头而不是跳过 5 厘米吗?

      \documentclass{tikzposter}
\geometry{paperwidth=1080px,paperheight=1980px}

\usetheme{Board}

\begin{document}

\node[above right,opacity=1.2,inner sep=0pt,outer sep=0pt] at (bottomleft) {\includegraphics[width=\paperwidth,height=\paperheight]{example-image-duck}};

\maketitle % See Section 4.1
\colorlet{blockbodybgcolor}{black}
\colorlet{blocktitlefgcolor}{red}
\block{\textbf{Ultrastructural anylisis}}{}
\end{document}

块上方的 space 用于标题,但您可以通过 \maketitle:

的可选参数调整位置
\documentclass{tikzposter}
\geometry{paperwidth=1080px,paperheight=1980px}

\usetheme{Board}

\begin{document}

\node[above right,opacity=1.2,inner sep=0pt,outer sep=0pt] at (bottomleft) {\includegraphics[width=\paperwidth,height=\paperheight]{example-image-duck}};

\maketitle[titletotopverticalspace=-8cm] % See Section 4.1
\colorlet{blockbodybgcolor}{black}
\colorlet{blocktitlefgcolor}{red}
\block{\textbf{Ultrastructural anylisis}}{}
\end{document}