0

大家好,有人知道我如何将块放在页面的开头而不是跳过 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}
4

1 回答 1

0

块上方的空间用于标题,但您可以通过可选参数调整位置\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}

在此处输入图像描述

于 2021-06-22T12:46:42.030 回答