[Tex/LaTex] Long title in tikzposter

tikz-pgftikzposter

I would like to have a long title in tikzposter and have tried to introduce a newline within the \title{} command using \\ and \newline but it does not start a new line. In the old tikzposter class I think that long titles were split among several lines by default. I will be glad to know about any workaround for displaying long titles on several lines in the new tikzposter class.

Best Answer

The problem is that tikzposter puts the title inside a \scalebox thus preventing line breaks. You can recover line breaking placing your title inside a \parbox:

\documentclass{tikzposter}

\title{\parbox{\linewidth}{\centering This is a really  really  really  really  really  really  really  really  really  long title for a poster}}
\institute{The Institute}
\author{The Author}
\titlegraphic{Logo}
\usetheme{Basic}

\begin{document}

\maketitle
\block{BlocktitleA}{Blocktext}
\begin{columns}
\column{0.3}
\block{BlocktitleB}{Blocktext}
\column{0.7}
\block{BlocktitleC}{Blocktext}
\note{Notetext}
\end{columns}

\end{document}

enter image description here