[Tex/LaTex] Increase size of poster in a0poster

a0posterposters

I am designing a poster for OHBM conference (my first poster). I am using a0poster, but it gives posters of fixed width and height.

I want to make a poster of 90 cm width, and 150 cm height. Is there a way to do this in a0poster?

Best Answer

Add \setlength{\paperwidth}{90cm} and \setlength{\paperheight}{150cm}. Here you can find the a0poster package.

Size:

enter image description here

MWE:

\documentclass[portrait,a0b,posterdraft]{a0poster}
\usepackage{german,epsf,pstricks}
\setlength{\paperwidth}{90cm}
\setlength{\paperheight}{150cm}
\usepackage{blindtext}
\begin{document}
\Blindtext
\end{document}
Related Question