如何将横向标题放在 Tikz Overleaf 块中

How Can put lateral title in block Tikz Overleaf

你好有下面的代码,我想在左边设置标题,这样我就可以在右边加载图片

  \documentclass[a2paper]{tikzposter}
%\geometry{paperwidth=1080px,paperheight=1980px}
\usepackage{multicol}
\usetheme{Board}
\usepackage{lipsum}

\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}

您可以使用列:

\documentclass[a2paper]{tikzposter}
\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{blockbodyfgcolor}{white}
\colorlet{blocktitlefgcolor}{red}


\begin{columns}
\column{0.5} 
\block{\textbf{Ultrastructural anylisis}}{}

\column{0.5} \node at (9.5cm,21cm) {\includegraphics[width=.4\textwidth]{example-image-duck}};
\end{columns}

\end{document}