告诉我如何将纸张尺寸设置为我需要的尺寸。但是有一个问题,块溢出了设置的尺寸:
我的最小 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
您必须调整textwidth
和textheight
以适合纸张尺寸。为此,请将以下几行添加到您的序言中。
\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}