使用 tikzposter 让方块溢出海报

使用 tikzposter 让方块溢出海报

如何更改 tikzposter 中的纸张尺寸?

告诉我如何将纸张尺寸设置为我需要的尺寸。但是有一个问题,块溢出了设置的尺寸:

此处块溢出

我的最小 LaTeX 文件是

\documentclass{tikzposter}

\geometry{paperwidth=74cm,paperheight=121cm}

\title{Super-scientific poster}
\author{Smart Author}
\institute{Famous University}
\usetheme{Default}

\begin{document}

\maketitle

\begin{columns}

\column{0.5}
\block{Dummy}{text}

\column{0.5}
\block{Dummy2}{text2}

\end{columns}

\end{document}

我需要让tikzposter block我们知道海报的宽度吗?

答案1

您必须调整textwidthtextheight以适合纸张尺寸。为此,请将以下几行添加到您的序言中。

\makeatletter
\setlength{\TP@visibletextwidth}{73cm}
\setlength{ \TP@visibletextheight}{120cm}
\makeatother

代码:

\documentclass{tikzposter}

%\geometry{paperwidth=841mm,paperheight=1189mm}   %% aopaper sizes
\geometry{paperwidth=74cm,paperheight=121cm}

\makeatletter
\setlength{\TP@visibletextwidth}{73cm}
\setlength{ \TP@visibletextheight}{120cm}
\makeatother

\title{Super-scientific poster}
\author{Smart Author}
\institute{Famous University}
\usetheme{Default}

\begin{document}

\maketitle

\begin{columns}

\column{0.5}
\block{Dummy}{text}

\column{0.5}
\block{Dummy2}{text2}

\end{columns}

\end{document}

在此处输入图片描述

相关内容