我在 tikzposter 中有一张海报。现在我想在页面底部放置一个框。它应该与整个海报一样宽。它应该“接触”海报的两侧和底部。框不应该取代标题 - 我也需要它。
如何才能做到这一点?
感谢您的时间。
答案1
整体tikzposter
本质上是一个tikzpicture
。此外,该类bottomleft
在纸张的左下角定义了一个坐标,因此您可能只需添加类似
\node [above right,outer sep=0pt,minimum width=\paperwidth,align=center,draw,fill=blue!30] at (bottomleft) {Some text at the bottom};
就在之前\end{document}
。
完整示例:
\documentclass[a0paper]{tikzposter}
\author{Someone}
\title{Something}
\begin{document}
\maketitle[width=0.95\textwidth,linewidth=0pt]
\node [above right,
outer sep=0pt,
minimum width=\paperwidth-2*\pgflinewidth,
minimum height=7cm,
align=center,font=\Huge,
draw,fill=blue!30,
ultra thick] at ([shift={(0.5*\pgflinewidth,0.5*\pgflinewidth)}]bottomleft) {Some text at the bottom};
\end{document}