tikzposter 中如何让块标题与块主体重叠?

tikzposter 中如何让块标题与块主体重叠?

在 tikzposter 中,横跨海报整个宽度的区块标题往往会浪费大量宝贵的空间。缩小区块标题宽度titlewidthscale没有帮助,因为区块标题在区块主体之外。这是一个 MWE:

\documentclass[
    17pt,
    a1paper,
    ]{tikzposter} 

\usetitlestyle[
    width=750mm,
    linewidth=2pt,
    titletoblockverticalspace=0mm
    ]{Filled}
\usebackgroundstyle{Empty}
\useblockstyle[roundedcorners=5,linewidth=2pt]{Default}

\title{Some title} %
\institute{Some institute} 
\author{Author 1 \& Author 2}

\begin{document}

\maketitle

\block{block title (consuming a lot of space)}{
Text\\Text
}

\block[titleleft,titlewidthscale=0.04]{\hspace{-20em}block title (still consuming a lot of space)}{
Text\\Text
}

\end{document} 

它看起来像这样(并且应该是这样的): 在此处输入图片描述 有什么想法可以将标题包含到正文中,以便可以使用标题右侧的空间吗?

顺便提一句: titlewidthscale似乎中断了。这就是我在示例中titleleft摆弄它的原因。\hspace

相关内容