[Tex/LaTex] How to i change the paper size in tikzposter

geometrypaper-sizetikzposter

Right now the only allowed paper sizes in tikzposter are a0paper, a1paper, or a2paper. Is there a way to manually set the size of the poster in inches or other units?

Best Answer

The tikzposter class loads geometry, so you can use its syntax to specify different paper sizes:

\documentclass{tikzposter}
\geometry{paperwidth=4in,paperheight=3in}

\usepackage{lipsum}

\begin{document}
\lipsum[1]
\end{document}

enter image description here

10.2cm is 4in and 7.6cm is 3in