3

I am using the tikzposter package, and I was wondering how one could split the title into two lines:

\documentclass[24pt, a0papper, portrait]{tikzposter}
\usepackage[utf8]{inputenc}

\title{Extreeeeeeeeeeeeeeeeeeemly Looooooooooooooooooooooooooooooong Tiiiiiiiiiiiiiiiiiiiitle Here}
\author{ShareLaTeX Team}
\date{\today}
\institute{ShareLaTeX Institute}

\usetheme{Board}

\begin{document}

\maketitle

\end{document}

1 Answers1

0

Like already mentioned in the comments, you can simply use \\ wherever you want the line break.

If a title is used in links with the hyperref package (also for example when chapters have links in the table of contents), you use \texorpdfstring{\\}{}

DoubleYou
  • 277