我试图使海报一半的块具有红色背景,而另一半的块具有绿色背景。
那可能吗?
谢谢
答案1
块的背景颜色是blockbodybgcolor
,因此您可以简单地使用 重新定义该颜色,以适合您的文档\colorlet{blockbodybgcolor}{<colorname>}
。同样,块的背景颜色标题是blocktitlebgcolor
,因此如果愿意的话,您也可以更改它。
\documentclass[a2paper]{tikzposter}
\author{D. Ude}
\title{FooBar}
\begin{document}
\maketitle
\block{A}{This has the default colour}
\colorlet{blockbodybgcolor}{green!60}
\block{B}{This is green}
{ % start a group to keep the change of title background color local
\colorlet{blocktitlebgcolor}{red!60}
\block{C}{As is this, but the title has red background}
} % end that group
\colorlet{blockbodybgcolor}{cyan}
\block{D}{This is cyan}
\end{document}